我想我已经尝试了所有组合,但我无法让字母键盘显示返回键。它总是一个“完成”按钮,没有用。在 Nexus 7 (4.1) 上,情况更糟,并显示一个愚蠢的笑脸按钮和完成按钮,这对我的应用程序没有意义。只要我有一个返回按钮,就可以有一个完成按钮。这是我尝试过的众多选项之一:
<AutoCompleteTextView
android:id="@+id/annotate_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_marginLeft="60dp"
android:layout_marginRight="60dp"
android:layout_marginTop="15dp"
android:completionThreshold="1"
android:inputType="textCapSentences|textImeMultiLine"
android:imeOptions="actionDone"
android:lines="1"
android:maxLength="18"
android:textSize="30px" />
我尝试过使用和不使用 imeOpitons 线,以及各种 inputType 选项,包括删除它。有一些选项可以使其成为搜索按钮(没有帮助),但没有列出任何使其成为返回键的选项。我也试过“lines=2”,但没有解决。还有其他想法吗?