如何手動顯示 或 隱藏 SW keyboard
首先
InputMethodManager imm = (InputMethodManager)
getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
顯示
imm.showSoftInput(this, 0);
隱藏
imm.hideSoftInputFromWindow(this.getWindowToken(), 0);
文章標籤
全站熱搜
如何手動顯示 或 隱藏 SW keyboard
首先
InputMethodManager imm = (InputMethodManager)
getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
顯示
imm.showSoftInput(this, 0);
隱藏
imm.hideSoftInputFromWindow(this.getWindowToken(), 0);
留言列表