Can I limit the text length of EditText on Android?

Asked 1 years ago, Updated 1 years ago, 97 views

What is the best way to limit the text length of EditText on Android? Is it possible by writing XML?

android android-edittext maxlength

2022-09-21 17:32

1 Answers

<EditText
    android:id="@+id/input"
    android:layout_width="0dip"
    android:layout_height="wrap_content"
    android:inputType="number"
    android:maxLength="6"
    android:hint="@string/hint_gov"
    android:layout_weight="1"
/>

In the example above, limit the maximum length to maxLength, such as android:maxLength="6".


2022-09-21 17:32

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.