当完成点击时,软键盘未隐藏AutocompleteTextView
问题描述:
我在我的应用程序中有几个EditText
,当点击“完成”键时,软键盘被隐藏。这不会发生在AutocompleteTextView
。当完成点击时,软键盘未隐藏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"/>
答
android:imeOptions="actionDone"
或Java代码:
InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);
出于某种原因,没有其他方法为我工作......除了'机器人:imeOptions = “actionDone”' – 2015-03-15 21:43:35
试试这条线伙计...它会工作..! inputManager.hideSoftInputFromWindow(activity.getCurrentFocus()。getApplicationWindowToken(),0); – 2015-08-04 10:41:00