2013-03-15 112 views

回答

5

隱藏虛擬鍵盤:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
imm.hideSoftInputFromWindow(editView.getWindowToken(), 0); 
2
InputMethodManager inputManager = (InputMethodManager) 
            getSystemService(Context.INPUT_METHOD_SERVICE); 

inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 
            InputMethodManager.HIDE_NOT_ALWAYS); 

我把這個權利的onClick(視圖V)事件之後。 您需要import android.view.inputmethod.InputMethodManager;

當您單擊按鈕時,鍵盤將隱藏。