我有一个屏幕。它由一个编辑文本组成。 我希望当屏幕上显示此屏幕时,默认情况下会自动显示键盘而不点击编辑文本。
答案 0 :(得分:0)
你有没有试过像:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInputFromInputMethod(myEditText.getWindowToken(), 0);
答案 1 :(得分:0)
在App Manifest.xml文件中,您可以设置软键盘状态。听起来你想把它设置为“stateVisible”或“stateAlwaysVisible”
android:windowSoftInputMode=["stateUnspecified",
"stateUnchanged", "stateHidden",
"stateAlwaysHidden", "stateVisible",
"stateAlwaysVisible", "adjustUnspecified",
"adjustResize", "adjustPan"] >