解释为什么文本长度限制不起作用EditText
有以下描述:
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_column="2"
android:layout_row="3">
...
<EditText
android:id="@+id/editText"
android:hint=""
android:layout_width="10dp"
android:layout_height="40dp"
android:layout_column="1"
android:layout_row="1"
android:inputType="number"
android:singleLine="true"
android:maxLines="1"
android:lines="1"
android:maxLength="2"
android:textSize="16sp" />
构建选项:
minSdkVersion 16
targetSdkVersion 28