如何在启动时自动显示软键盘?

时间:2011-05-23 17:38:05

标签: java android android-edittext android-softkeyboard

我的活动只有一个EditText。我希望软键盘自动显示。我怎么能这样做?

1 个答案:

答案 0 :(得分:4)

你可以使用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);