我想将字母输入的数量限制为 18 个字符,并且不能使用超过 3 个数字。
为了限制长度,我已经完成了我的代码,但不知道如何处理 3 个数字。
<android.support.v7.widget.AppCompatEditText
android:id="@+id/name_et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLength="18"
android:layout_marginStart="5dp"
android:digits="qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890 @#$"
android:layout_toEndOf="@+id/name_tv"
android:imeOptions="actionDone"
android:textColor="@android:color/black" />