我的应用中有几个EditText
,当点击“完成”键时,隐藏了软键盘。 AutocompleteTextView
不会发生这种情况。
知道为什么吗?还有什么办法可以与AutocompleteTextView
获得相同的行为吗?
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_below="@id/search_zip"
android:layout_toLeftOf="@id/submit"
android:paddingLeft="10dp"
android:hint="@string/city_or_zip"
android:background="@drawable/bt_grey"
android:inputType="text"/>
答案 0 :(得分:2)
android:imeOptions="actionDone"
或在java代码中:
InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);
答案 1 :(得分:0)
在我的情况下,setOnEditorActionListener
出现了问题。所以我删除了下面的代码:
searchEditText?.setOnEditorActionListener { v, actionId, event ->
if (EditorInfo.IME_ACTION_DONE == actionId) {
return@setOnEditorActionListener true
} else
return@setOnEditorActionListener false
}