如何使软键盘候选视图不遮挡应用程序视图?

发布于 2024-08-31 04:42:47 字数 209 浏览 4 评论 0原文

我正在使用 Android SDK 附带的演示软键盘。

在纵向模式下,当显示候选视图时,它不会像默认的 Android 键盘那样向上移动应用程序。因此它覆盖了应用程序视图的一部分。

为了使演示软键盘中的候选视图表现得像默认的 Android 键盘一样,应该更改什么?

我还从 git 查看了 android 键盘的源代码,但没有发现与此行为相关的任何内容。

I am playing with the Demo SoftKeyboard the comes with the Android SDK.

In portrait mode when the candidate view is shown, it doesn't move the app up as the default android keyboard does. Hence it covers part of the application view.

What should be changed in order to make the candidate view in the demo softkeyboard behave as the default android keyboard does?

I've also looked at the source of the android keyboard from git but found nothing related to this behavior.

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

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

发布评论

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

评论(1

南汐寒笙箫 2024-09-07 04:42:47

我知道这已经很旧了,但无论如何,这里有一个答案。

 @Override public void onComputeInsets(InputMethodService.Insets outInsets) {
    super.onComputeInsets(outInsets);
    if (!isFullscreenMode()) {
        outInsets.contentTopInsets = outInsets.visibleTopInsets;
    }
}

I know this is old but here is an answer anyway.

 @Override public void onComputeInsets(InputMethodService.Insets outInsets) {
    super.onComputeInsets(outInsets);
    if (!isFullscreenMode()) {
        outInsets.contentTopInsets = outInsets.visibleTopInsets;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文