如何强制以横向模式显示键盘?

发布于 2024-11-24 13:08:32 字数 61 浏览 0 评论 0原文

如何在活动启动时强制以横向模式显示虚拟键盘?而且这个键盘不会填满整个屏幕,因此我可以在键盘上方显示一些视图。

How can I force display the virtual keyboard in landscape mode in startup of the activity? and this keyboard doesn't fill the entire screen so I can display some views above the keyboard.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

百合的盛世恋 2024-12-01 13:08:32

请参考我在类似问题下的回答:
如何在横向模式下仅打开半键盘?

求解决方案。

您需要在 xml 中引入 android:imeOptions="flagNoExtractUi" 属性才能产生您想要的效果。

Please refer to my answer at a similar question here:
How to open only half keyboard in Landscape mode?

For the solution.

You'll need to introduce an attribute of android:imeOptions="flagNoExtractUi" into your xml to produce the effect you seek.

旧话新听 2024-12-01 13:08:32

我猜你是在说强制在带有硬键盘的设备中以横向模式显示软键盘,对吧?

我们可以通过以下代码来做到这一点:

InputMethodManager input = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
if(input != null)
    input.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT);

I guess you are talking to force to show the soft keyboard in landscape mode in a device with hard keyboard, right?

We can do this by following code:

InputMethodManager input = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
if(input != null)
    input.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT);
裸钻 2024-12-01 13:08:32

这是唯一对我有用的组合:

private void hideKeyboard() {
    InputMethodManager imm = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
    View view = this.getCurrentFocus();
    if (view != null && imm != null) {
        imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
    }
}

为了展示它:

private void showKeyboard(View view){
    InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    if (imm != null) {
        imm.showSoftInput(view, 0);
    }
}

我还在 XML 视图中添加了 android:imeOptions="flagNoExtractUi"

This is the only combination that worked for me:

private void hideKeyboard() {
    InputMethodManager imm = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
    View view = this.getCurrentFocus();
    if (view != null && imm != null) {
        imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
    }
}

and to show it:

private void showKeyboard(View view){
    InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    if (imm != null) {
        imm.showSoftInput(view, 0);
    }
}

I also added android:imeOptions="flagNoExtractUi" to the view in XML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文