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


Odpowiedzi:


260

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

android:maxLength="140"

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"

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);

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"
        />

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

        }
    });

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) {
    }
});

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"

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);
  }

0

Droga Kotlina

editText.filters = arrayOf(InputFilter.LengthFilter(maxLength))
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.