2
我想隱藏鍵盤上的一個按鈕的點擊事件。任何幫助,將不勝感激Android隱藏鍵盤上btn點擊
我想隱藏鍵盤上的一個按鈕的點擊事件。任何幫助,將不勝感激Android隱藏鍵盤上btn點擊
隱藏虛擬鍵盤:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
我把這個權利的onClick(視圖V)事件之後。 您需要import android.view.inputmethod.InputMethodManager;
當您單擊按鈕時,鍵盤將隱藏。