您的位置:首页 > 移动开发 > Android开发

Android EditText输入限制最大字符长度 和 限制只能输入数字和字母(包含大小写)

2017-05-09 17:38 603 查看
          如题:Android EditText输入限制最大字符长度  和 限制只能输入数字和字母(包含大小写),主要是如下两个属性:

            android:maxLength="10"

            android:digits="0123456789qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM"

           <EditText
android:id="@+id/aeid"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="10dp"
android:background="@drawable/gray_shape"
android:gravity="center"
android:hint="@string/login_aeid"
android:singleLine="true"
android:maxLength="10"
android:digits="0123456789qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM"
android:textColor="@color/gray"
android:textColorHint="@color/hint_color"
mykeyboard:xml="@xml/qwertyupper"
/>   
       参考这个博客:http://blog.csdn.net/zhuzhiqiang_zhu/article/details/51220471,不过没有控制大写的情况,我上面补充了一下
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android