如何设置Android EditText输入的最大字符数?我看到setMaxLines,setMaxEMS,但没有任何字符数。
答案 0 :(得分:236)
在XML中,您可以将此行添加到EditText
View
,其中140是最大字符数:
android:maxLength="140"
答案 1 :(得分:49)
动态:
editText.setFilters(new InputFilter[] { new InputFilter.LengthFilter(MAX_NUM) });
通过xml:
<EditText
android:maxLength="@integer/max_edittext_length"
答案 2 :(得分:44)
你可以使用InputFilter,就是这样:
EditText myEditText = (EditText) findViewById(R.id.editText1);
InputFilter[] filters = new InputFilter[1];
filters[0] = new InputFilter.LengthFilter(10); //Filter to 10 characters
myEditText .setFilters(filters);
答案 3 :(得分:10)
这些可能会有所帮助:
答案 4 :(得分:6)
我总是像这样设置最大值:
<EditText
android:id="@+id/edit_blaze_it
android:layout_width="0dp"
android:layout_height="@dimen/too_high"
<!-- This is the line you need to write to set the max-->
android:maxLength="420"
/>
答案 5 :(得分:3)
这对我有用。
etMsgDescription.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maximum_character)});
etMsgDescription.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
tvCharacterLimite.setText(" "+String.valueOf(maximum_character - etMsgDescription.getText().length()));
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
});
答案 6 :(得分:0)
这对我有用,它是我发现的最好的。 它的最大长度为200个字符
editObservations.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (editObservations.getText().length() >= 201){
String str = editObservations.getText().toString().substring(0, 200);
editObservations.setText(str);
editObservations.setSelection(str.length());
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
@Override
public void afterTextChanged(Editable s) {
}
});
答案 7 :(得分:0)
<EditText
android:id="@+id/edtName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter device name"
android:maxLength="10"
android:inputType="textFilter"
android:singleLine="true"/>
InputType必须设置“ textFilter”
android:inputType="textFilter"
答案 8 :(得分:0)
在任何地方轻松使用此功能:
public static void setEditTextMaxLength(EditText editText, int length) {
InputFilter[] FilterArray = new InputFilter[1];
FilterArray[0] = new InputFilter.LengthFilter(length);
editText.setFilters(FilterArray);
}
答案 9 :(得分:0)
科特琳的方式
*shrugs*
答案 10 :(得分:0)
很明显,您可以在xml或InputFilter.LengthFilter中使用maxLength,如上文所述。但是在某些情况下对我来说还不够。我为更灵活的EditText设置创建了一个类:https://github.com/devapro/NumberWatcher 它是仅用于数字输入的实现,但是您可以更改任何类型的数字。
答案 11 :(得分:0)
在具有maxLenght的XML中不起作用 我使用此代码,可以限制字符数
String editorName = mEditorNameNd.getText().toString().substring(0, Math.min(mEditorNameNd.length(), 15));