Chciałbym programowo ustawić maxLength
właściwość, TextView
ponieważ nie chcę na stałe kodować jej w układzie. Nie widzę żadnej set
metody związanej z maxLength
.
Czy ktoś może mi pomóc, jak to osiągnąć?
Chciałbym programowo ustawić maxLength
właściwość, TextView
ponieważ nie chcę na stałe kodować jej w układzie. Nie widzę żadnej set
metody związanej z maxLength
.
Czy ktoś może mi pomóc, jak to osiągnąć?
Odpowiedzi:
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);
editText.filters = arrayOf(*editText.filters, InputFilter.LengthFilter(10))
zachowaj stare filtry z kotlinem
Spróbuj tego
int maxLengthofEditText = 4;
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLengthofEditText)});
Łatwy sposób edycji limitu znaków tekstu :
EditText ed=(EditText)findViewById(R.id.edittxt);
ed.setFilters(new InputFilter[]{new InputFilter.LengthFilter(15)});
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)
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
.)
LengthFilter(10)
), a następnie dodać kolejny ( LengthFilter(20)
).
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))
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)
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);
najlepsze rozwiązanie, jakie znalazłem
textView.setText(text.substring(0,10));
EditText
, ale odcina tekst po dziesiątym symbolu (jednorazowo).
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);