如何在开始时自动显示软键盘?
我有一个只有EditText的活动。 我想让软键盘自动显示。 我怎样才能做到这一点?
你可以使用这个onResume:
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(((EditText) findViewById(R.id.your_view)),InputMethodManager.SHOW_FORCED);
我建议您在强制键盘出现之前检查是否有硬件键盘。
隐藏:
((InputMethodManager) YourActivity.this.getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(findViewById(R.id.YOUR_VIEW).getWindowToken(), 0);
编辑:
尝试这个:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
链接地址: http://www.djcxy.com/p/16659.html
上一篇: How to automatically show soft keyboard on start?
下一篇: How to set both gravity and layout gravity of a LinearLayout programatically