1
android如何檢測鍵盤是否存在?如果我需要更改android檢測鍵盤的方式,我應該修改哪個文件。如何檢測鍵盤是否存在
android如何檢測鍵盤是否存在?如果我需要更改android檢測鍵盤的方式,我應該修改哪個文件。如何檢測鍵盤是否存在
代碼示例:
public void showKeyBoard() {
InputMethodManager mgr = (InputMethodManager) mGap.getSystemService(Context.INPUT_METHOD_SERVICE);
// only will trigger it if no physical keyboard is open
mgr.showSoftInput(mAppView, InputMethodManager.SHOW_IMPLICIT);
((InputMethodManager) mGap.getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(mAppView, 0);
}
public void hideKeyBoard() {
InputMethodManager mgr = (InputMethodManager) mGap.getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.hideSoftInputFromWindow(mAppView.getWindowToken(), 0);
}