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>
答案 0 :(得分:0)
添加singleLine = true
或
maxLines = 1
你的.xml文件中的