edittext是否有文字输入 android
1个回答
2015-12-12 · 知道合伙人软件行家
关注
展开全部
edittext.length() 来得到输入的长度。另外有三种方式控制EditText 最大输入字符数
1.在xml中 android:maxLength="10" 表示最大字符为10
2.在代码中 InputFilter[] filters = {new LengthFilter(10)};
editText.setFilters(filters); //表示最大输入10个字符
3.利用 TextWatcher 进行监听,以下为示例代码:
public void afterTextChanged(Editable arg0) {
}
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
int arg3) {
}
public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
Editable editable = editText.getText();
int len = editable.length();
if(len > maxLen)
{
int selEndIndex = Selection.getSelectionEnd(editable);
String str = editable.toString();
//截取新字符串
String newStr = str.substring(0,maxLen);
editText.setText(newStr);
editable = editText.getText();
//新字符串的长度
int newLen = editable.length();
//旧光标位置超过字符串长度
if(selEndIndex > newLen)
{
selEndIndex = editable.length();
}
//设置新光标所在的位置
Selection.setSelection(editable, selEndIndex);
}
}
1.在xml中 android:maxLength="10" 表示最大字符为10
2.在代码中 InputFilter[] filters = {new LengthFilter(10)};
editText.setFilters(filters); //表示最大输入10个字符
3.利用 TextWatcher 进行监听,以下为示例代码:
public void afterTextChanged(Editable arg0) {
}
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
int arg3) {
}
public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
Editable editable = editText.getText();
int len = editable.length();
if(len > maxLen)
{
int selEndIndex = Selection.getSelectionEnd(editable);
String str = editable.toString();
//截取新字符串
String newStr = str.substring(0,maxLen);
editText.setText(newStr);
editable = editText.getText();
//新字符串的长度
int newLen = editable.length();
//旧光标位置超过字符串长度
if(selEndIndex > newLen)
{
selEndIndex = editable.length();
}
//设置新光标所在的位置
Selection.setSelection(editable, selEndIndex);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询