Android에서 EditText의 텍스트 길이를 제한하는 가장 좋은 방법은 무엇입니까?
텍스트 길이를 제한하는 가장 좋은 방법은 무엇입니까?EditText
Android 서에?
xml로 할 수 있는 방법이 있습니까?
android:maxLength="10"
입력 필터를 사용하여 텍스트 보기의 최대 길이를 제한합니다.
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)
});
저는 이 문제를 겪었고 이미 설정된 필터를 잃지 않고 프로그래밍 방식으로 이 작업을 수행할 수 있는 잘 설명된 방법을 놓치고 있다고 생각합니다.
XML로 길이 설정:
승인된 답변이 올바르게 기술한 대로 EditText에 고정 길이를 정의하고 향후 추가로 변경하지 않으려면 EditText XML에서 다음을 정의합니다.
android:maxLength="10"
프로그래밍 방식으로 길이 설정
길이를 프로그래밍 방식으로 설정하려면 다음을 통해 설정해야 합니다.InputFilter
하고 이를 "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)
TextView tv = new TextView(this);
tv.setFilters(new InputFilter[]{ new InputFilter.LengthFilter(250) });
이를 달성하는 방법을 궁금해하는 다른 사람들을 위해, 여기 제 확장판이 있습니다.EditText
EditTextNumeric
.
.setMaxLength(int)
합니다.
.setMaxValue(int)
integer value 값제한최제한값▁limit▁maximum▁integer▁value
.setMin(int)
integer value 값제한최제한값▁minimum▁limit▁integer▁value
.getValue()
value ▁integer기▁value▁get를 가져옵니다.
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
물론 일도 마찬가지입니다.
Xml
android:maxLength="10"
Java:
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);
코틀린:
editText.filters += InputFilter.LengthFilter(maxLength)
10의 관찰로 인해 최대 길이를 설정하여 다른 필터가 손실되지 않도록 보호하기 위해 다음 코드를 작성했습니다.
/**
* This sets the maximum length in characters of an EditText view. Since the
* max length must be done with a filter, this method gets the current
* filters. If there is already a length filter in the view, it will replace
* it, otherwise, it will add the max length filter preserving the other
*
* @param view
* @param length
*/
public static void setMaxLength(EditText view, int length) {
InputFilter curFilters[];
InputFilter.LengthFilter lengthFilter;
int idx;
lengthFilter = new InputFilter.LengthFilter(length);
curFilters = view.getFilters();
if (curFilters != null) {
for (idx = 0; idx < curFilters.length; idx++) {
if (curFilters[idx] instanceof InputFilter.LengthFilter) {
curFilters[idx] = lengthFilter;
return;
}
}
// since the length filter was not part of the list, but
// there are filters, then add the length filter
InputFilter newFilters[] = new InputFilter[curFilters.length + 1];
System.arraycopy(curFilters, 0, newFilters, 0, curFilters.length);
newFilters[curFilters.length] = lengthFilter;
view.setFilters(newFilters);
} else {
view.setFilters(new InputFilter[] { lengthFilter });
}
}
//Set Length filter. Restricting to 10 characters only
editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(MAX_LENGTH)});
//Allowing only upper case characters
editText.setFilters(new InputFilter[]{new InputFilter.AllCaps()});
//Attaching multiple filters
editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(MAX_LENGTH), new InputFilter.AllCaps()});
이를 위해 다음 정의를 XML 파일에 추가할 수도 마찬가지입니다.
<EditText
android:id="@+id/input"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inputType="number"
android:maxLength="6"
android:hint="@string/hint_gov"
android:layout_weight="1"/>
이게하 최제길다니한의 됩니다.EditText
위젯을 6자로 지정합니다.
XML
android:maxLength="10"
프로그래밍 방식:
int maxLength = 10;
InputFilter[] filters = new InputFilter[1];
filters[0] = new InputFilter.LengthFilter(maxLength);
yourEditText.setFilters(filters);
으로 EditText & 는 " " " " " " " " " " " " " " " " " " " " " " " "의 값을 합니다.android:maxLength
에서 XML을 사용합니다.InputFilter.LengthFilter()
적용할 수 있습니다.
참조: TextView.java#L1564
material.io 에서 다음을 사용할 수 있습니다.TextInputEditText
와결여하와 TextInputLayout
:
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:counterEnabled="true"
app:counterMaxLength="1000"
app:passwordToggleEnabled="false">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:hint="@string/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLength="1000"
android:gravity="top|start"
android:inputType="textMultiLine|textNoSuggestions"/>
</com.google.android.material.textfield.TextInputLayout>
그리기 가능한 암호 EditText를 구성할 수 있습니다.
또는 카운터를 사용하거나 사용하지 않고 텍스트 길이를 제한할 수 있습니다.
종속성:
implementation 'com.google.android.material:material:1.1.0-alpha02'
코틀린:
edit_text.filters += InputFilter.LengthFilter(10)
ZTE Blade A520
이상한 효과가 있습니다.의 기호 15개)를 할 때 10개 이상의 기호(예: 15개)를 합니다.EditText
에는 처음 10이 표시되지만 나머지 5는 표시되지 않고 액세스할 수 없습니다. 그나다음같은기때삭제할로 할 때.Backspace
먼저 오른쪽 기호 5개를 삭제한 다음 나머지 10개를 제거합니다.이 동작을 해결하려면 다음 솔루션을 사용합니다.
android:inputType="textNoSuggestions|textVisiblePassword"
android:maxLength="10"
또는 다음과 같습니다.
android:inputType="textNoSuggestions"
또는 제안이 필요한 경우 다음과 같이 하십시오.
private class EditTextWatcher(private val view: EditText) : TextWatcher {
private var position = 0
private var oldText = ""
override fun afterTextChanged(s: Editable?) = Unit
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
oldText = s?.toString() ?: ""
position = view.selectionStart
}
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
val newText = s?.toString() ?: ""
if (newText.length > 10) {
with(view) {
setText(oldText)
position = if (start > 0 && count > 2) {
// Text paste in nonempty field.
start
} else {
if (position in 1..10 + 1) {
// Symbol paste in the beginning or middle of the field.
position - 1
} else {
if (start > 0) {
// Adding symbol to the end of the field.
start - 1
} else {
// Text paste in the empty field.
0
}
}
}
setSelection(position)
}
}
}
}
// Usage:
editTextWatcher = EditTextWatcher(view.edit_text)
view.edit_text.addTextChangedListener(editTextWatcher)
길이 필터를 다른 필터와 함께 사용할 수 있는 사용자 정의 텍스트 편집 클래스입니다.팀 갤러거의 답변 덕분에 (아래)
import android.content.Context;
import android.text.InputFilter;
import android.util.AttributeSet;
import android.widget.EditText;
public class EditTextMultiFiltering extends EditText{
public EditTextMultiFiltering(Context context) {
super(context);
}
public EditTextMultiFiltering(Context context, AttributeSet attrs) {
super(context, attrs);
}
public EditTextMultiFiltering(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public void setMaxLength(int length) {
InputFilter curFilters[];
InputFilter.LengthFilter lengthFilter;
int idx;
lengthFilter = new InputFilter.LengthFilter(length);
curFilters = this.getFilters();
if (curFilters != null) {
for (idx = 0; idx < curFilters.length; idx++) {
if (curFilters[idx] instanceof InputFilter.LengthFilter) {
curFilters[idx] = lengthFilter;
return;
}
}
// since the length filter was not part of the list, but
// there are filters, then add the length filter
InputFilter newFilters[] = new InputFilter[curFilters.length + 1];
System.arraycopy(curFilters, 0, newFilters, 0, curFilters.length);
newFilters[curFilters.length] = lengthFilter;
this.setFilters(newFilters);
} else {
this.setFilters(new InputFilter[] { lengthFilter });
}
}
}
그것은 xml로 간단하게 표현합니다.
android:maxLength="4"
xml 편집 텍스트에서 4자를 설정해야 하는 경우, 이를 사용합니다.
<EditText
android:id="@+id/edtUserCode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLength="4"
android:hint="Enter user code" />
Java의 경우 프로그래밍 방식으로 시도해 보십시오.
myEditText(new InputFilter[] {new InputFilter.LengthFilter(CUSTOM_MAX_LEN)});
그것은 xml로 간단하게 표현합니다.
android:maxLength="@{length}"
프로그래밍 방식으로 설정하기 위해 다음 기능을 사용할 수 있습니다.
public static void setMaxLengthOfEditText(EditText editText, int length) {
InputFilter[] filters = editText.getFilters();
List arrayList = new ArrayList();
int i2 = 0;
if (filters != null && filters.length > 0) {
int filtersSize = filters.length;
int i3 = 0;
while (i2 < filtersSize) {
Object obj = filters[i2];
if (obj instanceof LengthFilter) {
arrayList.add(new LengthFilter(length));
i3 = 1;
} else {
arrayList.add(obj);
}
i2++;
}
i2 = i3;
}
if (i2 == 0) {
arrayList.add(new LengthFilter(length));
}
if (!arrayList.isEmpty()) {
editText.setFilters((InputFilter[]) arrayList.toArray(new InputFilter[arrayList.size()]));
}
}
이건 잘 작동합니다...
android:maxLength="10"
▁only다▁will만 허용됩니다.10
성격.
좋은 솔루션을 많이 보았으나, 다음과 같은 보다 완벽하고 사용자 친화적인 솔루션을 제공하고자 합니다.
길이1, 길이제한.
더 을 주세요.2, 더입력하면트기, 를하위콜합해백니다을거리토트.
3, 커서는 가운데 또는 꼬리에 있을 수 있습니다.
4, 사용자는 문자열을 붙여넣어 입력할 수 있습니다.
은 항상 하고 origin5, keep ordin.5.
public class LimitTextWatcher implements TextWatcher {
public interface IF_callback{
void callback(int left);
}
public IF_callback if_callback;
EditText editText;
int maxLength;
int cursorPositionLast;
String textLast;
boolean bypass;
public LimitTextWatcher(EditText editText, int maxLength, IF_callback if_callback) {
this.editText = editText;
this.maxLength = maxLength;
this.if_callback = if_callback;
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
if (bypass) {
bypass = false;
} else {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append(s);
textLast = stringBuilder.toString();
this.cursorPositionLast = editText.getSelectionStart();
}
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
if (s.toString().length() > maxLength) {
int left = maxLength - s.toString().length();
bypass = true;
s.clear();
bypass = true;
s.append(textLast);
editText.setSelection(this.cursorPositionLast);
if (if_callback != null) {
if_callback.callback(left);
}
}
}
}
edit_text.addTextChangedListener(new LimitTextWatcher(edit_text, MAX_LENGTH, new LimitTextWatcher.IF_callback() {
@Override
public void callback(int left) {
if(left <= 0) {
Toast.makeText(MainActivity.this, "input is full", Toast.LENGTH_SHORT).show();
}
}
}));
사용자가 현재 입력의 일부를 강조 표시하고 매우 긴 문자열을 붙여넣으려고 하면 강조 표시를 복원하는 방법을 알 수 없습니다.
예를 들어, 최대 길이를 10으로 설정하고 사용자가 '12345678'을 입력한 후 '345'를 강조 표시한 후 제한을 초과하는 '0000' 문자열을 붙여 넣습니다.
내가 edit_text를 사용하려고 할 때.setSelection(start=2, end=4)을 선택하여 오리진 상태를 복원합니다. 결과적으로 오리진 강조 표시가 아닌 '12345678'로 2개의 공백만 있습니다.저는 누군가가 그것을 해결해 줬으면 합니다.
사용할 수 있습니다.android:maxLength="10"
[텍스트 편집]에서 선택합니다.(여기서 제한은 최대 10자입니다)
"maxLength"를 사용하고 있었는데 작동하지 않았습니다.그래서 저는 제 경험을 바탕으로 몇 가지를 시도했습니다.그리고 저는 문제를 발견했습니다.ID를 신고해야 합니다.그러면:
android:id="@+id/editTextTest"
android:maxLength="10"
언급URL : https://stackoverflow.com/questions/3285412/whats-the-best-way-to-limit-text-length-of-edittext-in-android
'bestsource' 카테고리의 다른 글
SQLITE SQL 덤프 파일을 POSTGRESQL로 변환 (0) | 2023.06.03 |
---|---|
Python 3.x 정수의 경우 비트 시프트보다 2배 더 빠릅니까? (0) | 2023.06.03 |
UITableView 선택을 비활성화하려면 어떻게 해야 합니까? (0) | 2023.06.03 |
루비에서 -> 연산자를 뭐라고 부르나요? (0) | 2023.06.03 |
Azure에서 이메일 보내기 (0) | 2023.05.29 |