Android TabBar - 随着键盘打开而向上滑动

发布于 2024-11-06 21:15:12 字数 93 浏览 0 评论 0原文

当用户触摸屏幕中的文本框时,有没有办法让标签栏不随键盘向上滑动?

现在,在默认实现中,随着键盘打开,选项卡栏向上移动并可见。

感谢您的帮助。

Is there a way to not have the tab bar slide up along with the keyboard when a user touches the textbox in a screen?

Right now, in the default implementation, along with the keyboard opening up, the tab bar moves upwards and is visible.

Thanks for your help.

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

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

发布评论

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

评论(1

梦毁影碎の 2024-11-13 21:15:12

我正在使用带有 EditText 的片段,并且其中没有滚动视图,但我仍然遇到这个问题。我的解决方案是将 android:windowSoftInputMode="adjustPan" 属性添加到清单中的活动中。不确定它是否适用于正常活动,但也许这是一个很好的起点:

<activity android:name=".MyActivity" android:windowSoftInputMode="adjustPan" />

I'm using fragments with EditText and no scroll view inside them and I still had that problem. A solution for me was to add the android:windowSoftInputMode="adjustPan" property to the activity in the manifest. Not sure if it will work for normal activities, but perhaps this is a good place to start:

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