无法让键盘加载onCreate()

时间:2011-01-19 20:49:42

标签: android android-softkeyboard

我的目标是在应用加载后立即打开键盘。使用此代码,

InputMethodManager inputMgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
                  inputMgr.toggleSoftInput(0, 0);`

在按钮上,我可以在按下按钮时加载键盘。但是,当置于覆盖onCreate()部分时,没有任何反应。

1 个答案:

答案 0 :(得分:8)

将以下行添加到AndroidManifest.xml中的活动

android:windowSoftInputMode="stateVisible|adjustPan"