EditText
Android에서 텍스트 길이를 제한하는 가장 좋은 방법은 무엇입니까 ?
xml을 통해 이것을 수행하는 방법이 있습니까?
답변
답변
입력 필터를 사용하여 텍스트보기의 최대 길이를 제한하십시오.
TextView editEntryView = new TextView(...);
InputFilter[] filterArray = new InputFilter[1];
filterArray[0] = new InputFilter.LengthFilter(8);
editEntryView.setFilters(filterArray);
답변
EditText editText = new EditText(this);
int maxLength = 3;
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLength)});
답변
이미 사용자 정의 입력 필터를 사용하는 사람에 대한 참고 또한 최대 길이를 제한하려면 :
코드에서 입력 필터를 할당하면로 설정된 필터를 포함하여 이전에 설정된 모든 입력 필터가 지워집니다 android:maxLength
. 비밀번호 입력란에 허용되지 않는 일부 문자를 사용하지 못하도록 사용자 지정 입력 필터를 사용하려고 할 때 이것을 알았습니다. setFilters로 해당 필터를 설정 한 후 maxLength가 더 이상 관찰되지 않았습니다. 해결책은 maxLength와 내 사용자 정의 필터를 프로그래밍 방식으로 함께 설정하는 것이 었습니다. 이 같은:
myEditText.setFilters(new InputFilter[] {
new PasswordCharFilter(), new InputFilter.LengthFilter(20)
});
답변
TextView tv = new TextView(this);
tv.setFilters(new InputFilter[]{ new InputFilter.LengthFilter(250) });
답변
나는이 문제를 겪었고 이미 설정된 필터를 잃지 않고 프로그래밍 방식으로이를 잘 설명하는 방법이 빠져 있다고 생각합니다.
XML에서 길이 설정 :
허용 된 답변이 올바르게 표시되므로 나중에 더 이상 변경하지 않을 EditText에 고정 길이를 정의하려면 EditText XML에 정의하십시오.
android:maxLength="10"
프로그래밍 방식으로 길이 설정
프로그래밍 방식으로 길이를 설정하려면을 통해 길이를 설정해야합니다 InputFilter
. 그러나 새 InputFilter를 만들어 설정하면 EditText
XML을 통해 또는 프로그래밍 방식으로 추가했을 수있는 이미 정의 된 다른 필터 (예 : maxLines, inputType 등)가 모두 손실됩니다.
그래서 이것은 잘못되었습니다 :
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLength)});
이전에 추가 된 필터를 잃지 않으려면 해당 필터를 가져 와서 새 필터 (이 경우 maxLength)를 추가 한 후 필터를 다음 EditText
과 같이 다시 설정하십시오 .
자바
InputFilter[] editFilters = editText.getFilters();
InputFilter[] newFilters = new InputFilter[editFilters.length + 1];
System.arraycopy(editFilters, 0, newFilters, 0, editFilters.length);
newFilters[editFilters.length] = new InputFilter.LengthFilter(maxLength);
editText.setFilters(newFilters);
그러나 Kotlin 은 모든 사람이 쉽게 사용할 수 있도록 기존 필터에 필터를 추가해야하지만 간단한 방법으로이를 달성 할 수 있습니다.
editText.filters += InputFilter.LengthFilter(maxLength)
답변
이것을 달성하는 방법을 궁금해하는 다른 사람들을 위해 여기 확장 EditText
클래스가 EditTextNumeric
있습니다.
.setMaxLength(int)
-최대 자릿수 설정
.setMaxValue(int)
-최대 정수 값 제한
.setMin(int)
-최소 정수 값 제한
.getValue()
-정수 값을 얻습니다
import android.content.Context;
import android.text.InputFilter;
import android.text.InputType;
import android.widget.EditText;
public class EditTextNumeric extends EditText {
protected int max_value = Integer.MAX_VALUE;
protected int min_value = Integer.MIN_VALUE;
// constructor
public EditTextNumeric(Context context) {
super(context);
this.setInputType(InputType.TYPE_CLASS_NUMBER);
}
// checks whether the limits are set and corrects them if not within limits
@Override
protected void onTextChanged(CharSequence text, int start, int before, int after) {
if (max_value != Integer.MAX_VALUE) {
try {
if (Integer.parseInt(this.getText().toString()) > max_value) {
// change value and keep cursor position
int selection = this.getSelectionStart();
this.setText(String.valueOf(max_value));
if (selection >= this.getText().toString().length()) {
selection = this.getText().toString().length();
}
this.setSelection(selection);
}
} catch (NumberFormatException exception) {
super.onTextChanged(text, start, before, after);
}
}
if (min_value != Integer.MIN_VALUE) {
try {
if (Integer.parseInt(this.getText().toString()) < min_value) {
// change value and keep cursor position
int selection = this.getSelectionStart();
this.setText(String.valueOf(min_value));
if (selection >= this.getText().toString().length()) {
selection = this.getText().toString().length();
}
this.setSelection(selection);
}
} catch (NumberFormatException exception) {
super.onTextChanged(text, start, before, after);
}
}
super.onTextChanged(text, start, before, after);
}
// set the max number of digits the user can enter
public void setMaxLength(int length) {
InputFilter[] FilterArray = new InputFilter[1];
FilterArray[0] = new InputFilter.LengthFilter(length);
this.setFilters(FilterArray);
}
// set the maximum integer value the user can enter.
// if exeeded, input value will become equal to the set limit
public void setMaxValue(int value) {
max_value = value;
}
// set the minimum integer value the user can enter.
// if entered value is inferior, input value will become equal to the set limit
public void setMinValue(int value) {
min_value = value;
}
// returns integer value or 0 if errorous value
public int getValue() {
try {
return Integer.parseInt(this.getText().toString());
} catch (NumberFormatException exception) {
return 0;
}
}
}
사용법 예 :
final EditTextNumeric input = new EditTextNumeric(this);
input.setMaxLength(5);
input.setMaxValue(total_pages);
input.setMinValue(1);
에 적용되는 다른 모든 메소드와 속성 EditText
은 물론 작동합니다.