1

actionNext不工作时

android:inputType="textCapWords"

但它的工作

android:inputType="text"

有人可以帮助解决这个问题吗

下面你可以看到我的代码

<android.support.design.widget.TextInputLayout
                android:id="@+id/profile_firstNameLay"
                android:layout_width="match_parent"
                android:theme="@style/TextLabel1"
                android:layout_height="wrap_content">

                <com.orbiosolutions.yabeee.CustomClasses.CustomEditText
                    android:id="@+id/profile_firstNameTxt"
                    android:textColor="@color/login_txt_color"
                    android:layout_width="match_parent"
                    android:textSize="@dimen/login_med_txt_size"
                    android:imeOptions="actionNext"
                    android:layout_height="wrap_content"
                    android:inputType="textCapWords"
                    android:maxLines="1"
                    android:hint="@string/first_name" />

            </android.support.design.widget.TextInputLayout>
4

1 回答 1

1

添加单行=真

或者

最大线数 = 1

在您的 .xml 文件中

于 2017-10-24T10:05:20.740 回答