เป็นวิธีที่ดีที่สุดในการจำกัดความยาวข้อความของ EditText ใน Android


703

วิธีที่ดีที่สุดในการจำกัดความยาวของข้อความEditTextใน Android คืออะไร

มีวิธีทำผ่าน xml หรือไม่?


1
ฉันต้องการตั้งค่าจำนวนอักขระสูงสุดสำหรับ EditText ของฉัน ตอนแรกมันไม่ชัดเจนว่าขีดจำกัดความยาวของข้อความเป็นสิ่งเดียวกัน (หมายเหตุสำหรับนักเดินทางที่สับสนอีกคน)
Katedral Pillon

ตอบที่ถูกต้องอยู่ที่นี่ : stackoverflow.com/a/19222238/276949 คำตอบนี้จำกัดความยาวและป้องกันบัฟเฟอร์จากการเติมอย่างต่อเนื่องหลังจากกดปุ่ม จำกัด จึงทำให้ปุ่ม Backspaceของคุณทำงานได้อย่างถูกต้อง
Martin Konecny

คำตอบ:


1382

26
D'โอ้! สิ่งเดียวกันเกิดขึ้นกับฉัน ฉันดูรหัสและไม่มีวิธี setMaxLength
hpique

1
ตรวจสอบที่นี่ทำอะไร มันแค่ลิงค์มายังหน้านี้
นอนหลับ

5
@Vincy คุณไม่ถูกต้อง maxLengthอสังหาริมทรัพย์ยังคงทำงาน
ashishduh

6
โปรดทราบว่าandroid:maxLengthเทียบเท่ากับInputFilter.LengthFilterดังนั้นเมื่อคุณเปลี่ยนตัวกรองตัวกรองโดยทางโปรแกรมคุณได้แก้ไขตัวกรอง XML ด้วย
mr5

20
สำหรับผู้ที่กล่าวว่าใช้งานไม่ได้โปรดทราบว่าการโทรsetFiltersจะหยุดandroid:maxLengthทำงานเนื่องจากจะเขียนทับตัวกรองที่กำหนดโดย XML กล่าวอีกนัยหนึ่งถ้าคุณตั้งค่าตัวกรองใด ๆ โดยทางโปรแกรมคุณต้องตั้งค่าตัวกรองทั้งหมดโดยทางโปรแกรม
Ian Newson

339

ใช้ตัวกรองอินพุตเพื่อจำกัดความยาวสูงสุดของมุมมองข้อความ

TextView editEntryView = new TextView(...);
InputFilter[] filterArray = new InputFilter[1];
filterArray[0] = new InputFilter.LengthFilter(8);
editEntryView.setFilters(filterArray);

6
InputFilterนี้มีประโยชน์มากถ้ามีคนทำอยู่แล้วบางส่วน มันแทนที่android:maxlengthในไฟล์ xml ดังนั้นเราต้องเพิ่มLengthFilterวิธีนี้
Seblis

ฉันคิดว่าคำตอบของคุณคือคำตอบที่ดีที่สุดเนื่องจากเป็นแบบไดนามิกมากขึ้น +1
Muhannad A.Alhariri

197
EditText editText = new EditText(this);
int maxLength = 3;    
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLength)});

นี่คล้ายกับวิธีที่ android ใช้กับ xml
Nicolas Tyler

4
ฉันจะตั้งความยาวขั้นต่ำได้อย่างไร?
Akhila Madari

@AkhilaMadari TextWatcherอาจจะมี
CoolMind

65

หมายเหตุให้กับผู้ที่กำลังใช้ตัวกรองการป้อนข้อมูลที่กำหนดเองและยังต้องการที่จะ จำกัด ความยาวสูงสุด:

android:maxLengthเมื่อคุณกรองอินพุตกำหนดในรหัสตัวกรองทั้งหมดใส่ชุดก่อนหน้านี้จะถูกล้างออกรวมทั้งชุดเดียวกับ ฉันพบสิ่งนี้เมื่อพยายามใช้ตัวกรองอินพุตแบบกำหนดเองเพื่อป้องกันการใช้อักขระบางตัวที่เราไม่อนุญาตในฟิลด์รหัสผ่าน หลังจากตั้งค่าตัวกรองนั้นด้วย setFilters maxLength จะไม่ถูกตรวจพบอีกต่อไป ทางออกคือการตั้ง maxLength และตัวกรองที่กำหนดเองของฉันเข้าด้วยกันโดยทางโปรแกรม บางสิ่งเช่นนี้

myEditText.setFilters(new InputFilter[] {
        new PasswordCharFilter(), new InputFilter.LengthFilter(20)
});

5
คุณสามารถดึงข้อมูลตัวกรองที่มีอยู่ก่อนเป็น InputFilter [] existingFilters = editText.getFilters (); จากนั้นเพิ่มตัวกรองของคุณพร้อมกับตัวกรองที่มีอยู่นี้
subair_a


27

ฉันมีปัญหานี้และฉันคิดว่าเราขาดวิธีที่อธิบายไว้เป็นอย่างดีในการเขียนโปรแกรมโดยไม่สูญเสียตัวกรองที่ตั้งค่าไว้แล้ว

การตั้งค่าความยาวใน XML:

เนื่องจากคำตอบที่ยอมรับนั้นถูกต้องหากคุณต้องการกำหนดความยาวคงที่ให้กับ EditText ซึ่งคุณจะไม่เปลี่ยนแปลงอีกในอนาคตเพียงแค่กำหนดใน EditText XML ของคุณ:

android:maxLength="10" 

การตั้งค่าความยาวโดยทางโปรแกรม

ในการตั้งค่าความยาวโดยทางโปรแกรมคุณจะต้องตั้งค่าความInputFilterยาว แต่ถ้าคุณสร้าง InputFilter ใหม่และตั้งเป็นEditTextคุณจะเสียตัวกรองอื่น ๆ ที่กำหนดไว้แล้วทั้งหมด (เช่น maxLines, inputType ฯลฯ ) ซึ่งคุณอาจเพิ่มผ่าน XML หรือโดยทางโปรแกรม

ดังนั้นนี่คือผิด :

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)

23

สำหรับคนอื่นสงสัยว่าเพื่อให้บรรลุนี้ที่นี่เป็นของฉันขยายชั้นเรียนEditTextEditTextNumeric

.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แน่นอนเกินไป


1
มันจะดีกว่าถ้าเราเพิ่มสิ่งนี้ในเลย์เอาต์ xml ฉันได้รับข้อผิดพลาดเมื่อใช้ xml เกิดจาก: android.view.InflateException: บรรทัดไฟล์ Binary XML # 47: เกิดข้อผิดพลาดในการขยายคลาส com.passenger.ucabs.utils.EditTextNumeric
Shihab Uddin

@Martynas มีข้อผิดพลาดเดียวกันเช่น Shihab_returns ทางออกใด ๆ ?
Pranaysharma

17

เนื่องจากการสังเกตของ goto10 ฉันจึงใส่รหัสต่อไปนี้เพื่อป้องกันตัวกรองอื่น ๆ ที่หายไปโดยตั้งค่าความยาวสูงสุด:

/**
 * 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 });
    }
}

3
คุณอาจต้องการอัปเดตรหัสเล็กน้อย อาร์เรย์ที่จัดสรรจะต้องมีขนาด curFilters.length + 1 และหลังจากที่คุณสร้าง newFilters คุณไม่ได้ตั้งค่า "this" เป็นอาร์เรย์ที่จัดสรรใหม่ InputFilter newFilters [] = new InputFilter [curFilters.length + 1]; System.arraycopy (curFilters, 0, newFilters, 0, curFilters.length); this.setFilters (newFilters);
JavaCoderEx

15
//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()});

12

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);

Kotlin:

editText.filters += InputFilter.LengthFilter(maxLength)

8

อีกวิธีที่คุณสามารถทำได้คือเพิ่มคำจำกัดความต่อไปนี้ลงในไฟล์ 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 ตัวอักษร


6

จาก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 ด้วย drawable:

ตัวอย่างรหัสผ่าน

หรือคุณสามารถจำกัดความยาวข้อความโดยมี / ไม่มีตัวนับ:

ตัวอย่างเคาน์เตอร์

การอ้างอิง:

implementation 'com.google.android.material:material:1.1.0-alpha02'

6

XML

android:maxLength="10"

โปรแกรม:

int maxLength = 10;
InputFilter[] filters = new InputFilter[1];
filters[0] = new InputFilter.LengthFilter(maxLength);
yourEditText.setFilters(filters);

หมายเหตุ: ภายใน EditText & TextView แยกค่าของandroid:maxLengthใน XML และใช้InputFilter.LengthFilter()เพื่อนำไปใช้

ดู: TextView.java # L1564


2

นี่เป็นคลาส EditText แบบกำหนดเองที่อนุญาตให้ตัวกรองความยาวแสดงพร้อมกับตัวกรองอื่น ๆ ได้ ขอบคุณคำตอบของ Tim Gallagher (ด้านล่าง)

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 });
        }
    }
}

2

มันเป็นวิธีที่ง่ายใน xml:

android:maxLength="4"

หากคุณต้องการตั้งค่า 4 ตัวอักษรใน xml edit-text ดังนั้นให้ใช้สิ่งนี้

<EditText
    android:id="@+id/edtUserCode"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:maxLength="4"
    android:hint="Enter user code" />


2

ลองใช้วิธีนี้กับJava ทางโปรแกรม :

myEditText(new InputFilter[] {new InputFilter.LengthFilter(CUSTOM_MAX_LEN)});

1
คุณลืมที่จะเรียกวิธีการดังนั้นจึงควรมีลักษณะดังนี้:myEditText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(CUSTOM_MAX_LEN)});
StevenTB

1

ฉันเห็นโซลูชันที่ดีมากมาย แต่ฉันต้องการให้สิ่งที่ฉันคิดว่าเป็นโซลูชันที่สมบูรณ์และใช้งานง่ายขึ้นซึ่งรวมถึง:

1, จำกัดความยาว
2, ถ้าใส่มากขึ้น, โทรกลับเพื่อให้ขนมปังของคุณ
3 เคอร์เซอร์สามารถอยู่ตรงกลางหรือหาง
4, ผู้ใช้สามารถป้อนข้อมูลโดยวางสตริง
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) เพื่อเรียกคืนสถานะเริ่มต้นผลลัพธ์คือมันเพิ่งแทรก 2 ช่องว่างเป็น '12 345 678 'ไม่ใช่ไฮไลต์ดั้งเดิม ฉันต้องการใครสักคนแก้ปัญหานั้น


1

คุณสามารถใช้android:maxLength="10"ใน EditText (ที่นี่มีความยาวไม่เกิน 10 อักขระ)


0

Kotlin:

edit_text.filters += InputFilter.LengthFilter(10)

ZTE Blade A520มีผลแปลก ๆ เมื่อคุณพิมพ์สัญลักษณ์มากกว่า 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)

0

มันเป็นวิธีที่ง่ายใน 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 length = filters.length;
        int i3 = 0;
        while (i2 < length) {
            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()]));
    }
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.