android text设置只能输入数字并限制长度

来源:互联网 发布:ppt教学软件 编辑:程序博客网 时间:2024/06/18 17:16
 <EditText        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:maxLength="11"//限制长度         android:numeric="integer" //只能是数字        android:singleLine="true"        android:hint="请输入号码" />
0 0