我希望我的应用程序中的软键盘在Done
单击特定的EditText
. 这是它的样子
<EditText
android:id="@+id/code_editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/enter_code_textView"
android:layout_marginStart="@dimen/margin_25dp"
android:layout_marginLeft="@dimen/margin_25dp"
android:layout_marginTop="@dimen/margin_12dp"
android:layout_marginEnd="@dimen/margin_25dp"
android:layout_marginRight="@dimen/margin_25dp"
android:background="@drawable/edittext_background"
android:maxLines="1"
android:inputType="text"
android:imeOptions="actionDone"
android:textColor="@color/black"
android:textCursorDrawable="@null"
android:textSize="16sp" />
但这不起作用。软键盘输入键文本根本没有变化。我在多个设备上试过这个,一个Oreo
和一个KitKat
。我也尝试过使用singleLine
属性,但这也不起作用。我在这里想念什么?提前致谢!