显示Android软键盘

我正在尝试显示软键盘。 我找到了很多答案,但没有一个能解决我的问题。 InputMethodManager imm =(InputMethodManager)activity.getSystemService(Context.INPUT_METHOD_SERVICE); imm.showSoftInput(error [0],InputMethodManager.SHOW_IMPLICIT); 错误[0] .requestFocus();


尝试这个 。 当您开始活动时,软键盘将弹出: -

    this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);

或将其添加到要在其启动时显示软键盘的活动中: -

android:windowSoftInputMode="stateVisible"

或者如果你想要软键盘在编辑文本上弹出: -

    InputMethodManager imm = (InputMethodManager)getSystemService(
              Context.INPUT_METHOD_SERVICE);
        imm.showSoftInput(myEditText.getWindowToken(), 0);
链接地址: http://www.djcxy.com/p/93035.html

上一篇: Display Android Soft Keyboard

下一篇: Show soft keyboard when the device is landscape mode