1.使用者直接點擊EditText隱藏鍵盤,像是要用EditText選擇日期。
edittext.setInputType(InputType.TYPE_NULL);
2.使用者透過其他元件要讓EditText隱藏鍵盤
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edittext.getWindowToken(), 0);
Platform Versions: 4.4, 4.3
沒有留言:
張貼留言