码迷,mamicode.com
首页 > 移动开发 > 详细

Android中设定EditText的输入长度

时间:2014-09-26 19:13:08      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   os   ar   sp   div   on   c   

如何限定Android的Text中的输入长度呢?

方法一:可以在layout xml中加上属性android:maxLength
比如:
<EditText
        android:id="@+id/editTextShow"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hint"
        android:cursorVisible="false"
        android:lines="1"
        android:maxLength="16"
        />
 
方法二:在代码中控制
editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(20)});

Android中设定EditText的输入长度

标签:android   style   blog   os   ar   sp   div   on   c   

原文地址:http://www.cnblogs.com/antyi/p/3995167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!