2015-11-04
6:20 PM
若要在顯示某個 view 時
或是在按下其他按鈕時自動顯示指定 EditText 的虛擬鍵盤
可以使用以下方式
隱藏虛擬鍵盤使用方式詳見此篇介紹
程式碼範例
private EditText articleContentCommentEditor; // 取得 focus articleContentCommentEditor.requestFocus(); // 顯示虛擬鍵盤 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.showSoftInput(articleContentCommentEditor, InputMethodManager.SHOW_IMPLICIT);
各項資料連結
Android - 隱藏 EditText 的虛擬鍵盤
Android Developer
No comments:
Post a Comment