Come si imposta il numero massimo di caratteri per un EditText in Android?


Risposte:


261

In XML è possibile aggiungere questa riga in EditText Viewcui 140 è il numero massimo di caratteri:

android:maxLength="140"

puoi guidarmi come possiamo raggiungere questo obiettivo utilizzando la scheda delle proprietà nella vista grafica xml di eclipse?
Nitesh Verma,

@NiteshVerma nel tuo file xml res / layout inserisci '<LinearLayout .... <EditText android: maxLength = "20"'
Shell Scott

60

dinamicamente:

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

Tramite xml:

<EditText
    android:maxLength="@integer/max_edittext_length"

45

Puoi usare un InputFilter, ecco come:

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

Ho sempre impostato il massimo in questo modo:

    <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

Funziona per me.

    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

Ha funzionato per me in questo modo, è il migliore che abbia trovato. È per una lunghezza massima di 200 caratteri

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 deve impostare "textFilter"

        android:inputType="textFilter"

0

usa questa funzione ovunque facilmente:

 public static void setEditTextMaxLength(EditText editText, int length) {
    InputFilter[] FilterArray = new InputFilter[1];
    FilterArray[0] = new InputFilter.LengthFilter(length);
    editText.setFilters(FilterArray);
  }

0

Modo di Kotlin

editText.filters = arrayOf(InputFilter.LengthFilter(maxLength))
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.