Jak ustawić maksymalną liczbę znaków w EditText w systemie Android?

127

Jak ustawić maksymalną liczbę znaków dla wejścia EditText w Androidzie? Widzę setMaxLines, setMaxEMS, ale nic dla liczby znaków.

czytnik kodów kreskowych
źródło
Również odpowiedź SO [tutaj] [1], aby dynamicznie ustawić maksymalną długość [1]: stackoverflow.com/a/4145983/530513
David O'Meara

Odpowiedzi:

260

W XML możesz dodać tę linię do EditText Viewgdzie 140 to maksymalna liczba znaków:

android:maxLength="140"
Massimo Variolo
źródło
Czy możesz mi wskazać, jak możemy to osiągnąć za pomocą zakładki właściwości w widoku graficznym XML eclipse?
Nitesh Verma
@NiteshVerma w twoim pliku res / layout xml wstaw dalej '<LinearLayout .... <EditText android: maxLength = "20"'
Shell Scott
60

Dynamicznie:

editText.setFilters(new InputFilter[] { new InputFilter.LengthFilter(MAX_NUM) });

Przez XML:

<EditText
    android:maxLength="@integer/max_edittext_length"
gorgona
źródło
45

Możesz użyć InputFilter, to jest sposób:

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);
Superlandero
źródło
7

Maksymalne zawsze ustawiam tak:

    <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"
        />
ZooMagic
źródło
4

To działa dla mnie.

    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

        }
    });
Chirag
źródło
0

W ten sposób zadziałało, to najlepsze, jakie znalazłem. Maksymalna długość to 200 znaków

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) {
    }
});
Camilo Soto
źródło
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 musi ustawić „textFilter”

        android:inputType="textFilter"
Shetty Suresh Babu.
źródło
0

użyj tej funkcji w dowolnym miejscu łatwo:

 public static void setEditTextMaxLength(EditText editText, int length) {
    InputFilter[] FilterArray = new InputFilter[1];
    FilterArray[0] = new InputFilter.LengthFilter(length);
    editText.setFilters(FilterArray);
  }
Milad Mohamadi
źródło
0

Droga Kotlina

editText.filters = arrayOf(InputFilter.LengthFilter(maxLength))
Vlad
źródło