2015-02-09 63 views
2

我在我的應用程序中有幾個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"/> 

回答

2
android:imeOptions="actionDone" 

或Java代碼:

InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  
inputManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0); 
+0

出於某種原因,沒有其他方法爲我工作......除了'機器人:imeOptions = 「actionDone」' – 2015-03-15 21:43:35

+0

試試這條線夥計...它會工作..! inputManager.hideSoftInputFromWindow(activity.getCurrentFocus()。getApplicationWindowToken(),0); – 2015-08-04 10:41:00