android:imeOptions= "actionNext"不起作用



我正在创建注册页面,但为每个文本输入编辑文本添加下一步按钮,它运行良好,没有任何问题,

但是每当我在布局中添加android:digits="0123456789qwertzuiopasdfghjklyxcvbnm_ "时,它都不起作用。

解决方案的可能原因是什么?

下面是我的代码片段。

  <com.google.android.material.textfield.TextInputLayout
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:textColorHint="#c0c0c0"
                    app:errorEnabled="true"
                    app:theme="@style/MyTextInputLayoutStyle">
                    <com.google.android.material.textfield.TextInputEditText
                        android:id="@+id/activity_register_edit_text_state"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:ems="10"
                        android:hint="@string/state_region"
                        android:imeOptions="actionNext"
                       android:digits="0123456789qwertzuiopasdfghjklyxcvbnm_ "            
           android:inputType="textPersonName"
                         android:padding="@dimen/edittext_padding"
                        android:textColor="@color/text_color_light"
                        android:theme="@style/MyTextInputLayoutStyle"
                        app:errorTextAppearance="@style/TextErrorAppearance"
                        app:xfont="@string/roboto_regular" />
                </com.google.android.material.textfield.TextInputLayout>

提前谢谢。

当您在 EditText 或

TextInputEditText 中设置 android:digits 时,它只允许在其中定义的数字或字符。在安卓软输入(键盘(中,有一个下一个按钮有一个在安卓中没有定义的唯一代码:数字。

请参阅此链接以更好地理解

相关内容

  • 没有找到相关文章

最新更新