我使用了数字,在使用它之后,ime选项从动作下一步(用于多行)的actoin改变。 这是我的代码:
<EditText
android:id="@+id/acpr_etLiftNo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:textSize="@dimen/tvsize"
android:paddingTop="@dimen/default_padding"
android:paddingRight="@dimen/default_padding"
android:textColor="@color/black"
android:longClickable="false"
android:maxLines="1"
android:inputType="text"
android:digits="@string/en_validation"
android:imeOptions="actionNext"
android:hint="@string/lift_no"
>
<requestFocus/>
</EditText>
答案 0 :(得分:0)
使用此功能。
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionNext"
android:inputType="number"
android:singleLine="true"
android:textSize="15sp" />