限定 edittext 的 输入内容

时间:2023-03-09 16:44:58
限定 edittext 的 输入内容

<EditText

                android:id="@+id/idNumber"

                style="@style/NewServiceEditTextline"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

        

                android:hint="@string/DiseaseValueNotNull"

                android:inputType="number"

                android:maxLength="18"

                        android:digits="0123456789xX"

                android:singleLine="true"

                android:textColorHint="@color/red" />

相关文章