2011-08-03 43 views
0

當我給的inputType爲「TextUri」爲AutoCompleteTextView,鍵盤顯示出來,並輸入網址後,當我點擊完成,而不是要離開它仍然得到顯示在屏幕..AutoCompleteTextView和輸入型的Android

要隱藏鍵盤,我需要按後退按鈕..

<AutoCompleteTextView android:id="@+id/autocomplete_country" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:inputType="textUri"/> 

回答

1

下答案的鏈接可能是有益的,它基本上是說用這個:

InputMethodManager inputManager = (InputMethodManager) Context.getSystemService(Context.INPUT_METHOD_SERVICE); 
    inputManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); 

how to hide keyboard after typing in EditText in android?

相關問題