`
张江兴
  • 浏览: 121327 次
  • 性别: Icon_minigender_1
  • 来自: 湖南
社区版块
存档分类
最新评论

android中限制EditText中输入指定字符

 
阅读更多
 写道
<EditText android:id="@+id/neIdEt"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/login_edit_box"
                android:layout_gravity="center_horizontal"
                android:text=""
                android:digits="0123456789abcdef"
                android:maxLength="5"
                android:textColor="@drawable/white"
                android:layout_marginTop="10dp"/>
 

 

digits属性就是限定这个编辑框只能输入后面字符串中出现过的字符

 

maxLength属性是限定最多输入多少字符

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics