Jak programowo ustawić maxLength w Android TextView?

176

Chciałbym programowo ustawić maxLengthwłaściwość, TextViewponieważ nie chcę na stałe kodować jej w układzie. Nie widzę żadnej setmetody związanej z maxLength.

Czy ktoś może mi pomóc, jak to osiągnąć?

UMAR-MOBITSOLUTIONS
źródło

Odpowiedzi:

363

Powinno być coś takiego. ale nigdy nie używał go do widoku tekstu, tylko edittext:

TextView tv = new TextView(this);
int maxLength = 10;
InputFilter[] fArray = new InputFilter[1];
fArray[0] = new InputFilter.LengthFilter(maxLength);
tv.setFilters(fArray);
Sephy
źródło
119
Opierając się na tym, może być znacznie czystsze: tv.setFilters (nowy InputFilter [] {new InputFilter.LengthFilter (10)});
Mark D
43
Nie można po prostu powiedzieć „maxLength ()”… nie, nie, nie… to byłoby zbyt łatwe. musieli to abstrakcyjnie… yay!
angryITguy
3
Ale to zresetuje twoje poprzednie filtry, nie?
crgarridos
19
Z Kotlinem możesz uczynić to czystszym: editText.filters = arrayOf (InputFilter.LengthFilter (10))
Elvis Chidera,
5
editText.filters = arrayOf(*editText.filters, InputFilter.LengthFilter(10))zachowaj stare filtry z kotlinem
Peter Samokhin
85

Spróbuj tego

int maxLengthofEditText = 4;    
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLengthofEditText)});
IntelliJ Amiya
źródło
1
U mnie to działa, ale w Androidzie 5.1 nadal możesz nadal wpisywać litery, są one „niewidoczne” w polu wprowadzania. Ale są one pokazane w propozycji tekstu. A kiedy próbujesz usunąć litery na końcu.
Radon8472
11
To nie jest „inny sposób” to jest skrócona wersja pierwszej odpowiedzi, tak samo.
Ninja Coding
21

Łatwy sposób edycji limitu znaków tekstu :

EditText ed=(EditText)findViewById(R.id.edittxt);
ed.setFilters(new InputFilter[]{new InputFilter.LengthFilter(15)});
Farid Ahmed
źródło
16

Dla tych z Was, którzy używają Kotlin

fun EditText.limitLength(maxLength: Int) {
    filters = arrayOf(InputFilter.LengthFilter(maxLength))
}

Następnie możesz po prostu użyć prostego editText.limitLength (10)

Kevin
źródło
1
dlaczego nie użyć setMaxLength jako nazwy funkcji? możesz zastosować to również do
widoku tekstowego
Mam inne metody, które są zgodne z tym wzorcem: limitDecimalPlaces, limitNumberOnly, limitAscii, aby przejść z limitLength.
Kevin
1
filtry = filtry.plus (InputFilter.LengthFilter (max)) Nie nadpisuj istniejących
ersin-ertan
7

Jak powiedział João Carlos , w Kotlin użyj:

editText.filters += InputFilter.LengthFilter(10)

Zobacz też https://stackoverflow.com/a/58372842/2914140 o dziwnym zachowaniu niektórych urządzeń.

(Dodaj android:inputType="textNoSuggestions"do swojego EditText.)

CoolMind
źródło
1
Tworzy błąd, jeśli chcesz zmienić długość, tak jak w moim przypadku zmieniam MaxLength z 10 na 20, ale tak jak w kodzie dodajemy filtr, pozostaje ustawiony MaxLength 10 bcus teraz w tablicy mamy 10,20 dwie maksymalne długości.
Nikhil
@Nikhil, zgadzam się z tobą, dzięki! Tak, w takim przypadku powinniśmy najpierw usunąć jeden filtr ( LengthFilter(10)), a następnie dodać kolejny ( LengthFilter(20)).
CoolMind
6

Dla Kotlina i bez resetowania poprzednich filtrów:

fun TextView.addFilter(filter: InputFilter) {
  filters = if (filters.isNullOrEmpty()) {
    arrayOf(filter)
  } else {
    filters.toMutableList()
      .apply {
        removeAll { it.javaClass == filter.javaClass }
        add(filter)
      }
      .toTypedArray()
  }
}

textView.addFilter(InputFilter.LengthFilter(10))
santalu
źródło
1

Zrobiłem prostą funkcję rozszerzenia dla tego

/**
 * maxLength extension function makes a filter that 
 * will constrain edits not to make the length of the text
 * greater than the specified length.
 * 
 * @param max
 */
fun EditText.maxLength(max: Int){
    this.filters = arrayOf<InputFilter>(InputFilter.LengthFilter(max))
}

editText?.maxLength(10)
Kyriakos Georgiopoulos
źródło
0
     AlertDialog.Builder builder = new AlertDialog.Builder(this);
                    builder.setTitle("Title");


                    final EditText input = new EditText(this);
                    input.setInputType(InputType.TYPE_CLASS_NUMBER);
//for Limit...                    
input.setFilters(new InputFilter[] {new InputFilter.LengthFilter(3)});
                    builder.setView(input);
Wyjątek zerowego wskaźnika
źródło
0

najlepsze rozwiązanie, jakie znalazłem

textView.setText(text.substring(0,10));
Sai Gopi N.
źródło
Nie ogranicza długości EditText, ale odcina tekst po dziesiątym symbolu (jednorazowo).
CoolMind
0

Aby zachować oryginalny filtr wejściowy, możesz to zrobić w ten sposób:

InputFilter.LengthFilter maxLengthFilter = new InputFilter.LengthFilter(100);
        InputFilter[] origin = contentEt.getFilters();
        InputFilter[] newFilters;
        if (origin != null && origin.length > 0) {
            newFilters = new InputFilter[origin.length + 1];
            System.arraycopy(origin, 0, newFilters, 0, origin.length);
            newFilters[origin.length] = maxLengthFilter;
        } else {
            newFilters = new InputFilter[]{maxLengthFilter};
        }
        contentEt.setFilters(newFilters);
hanswim
źródło