Android TabBar - 随着键盘打开而向上滑动
当用户触摸屏幕中的文本框时,有没有办法让标签栏不随键盘向上滑动?
现在,在默认实现中,随着键盘打开,选项卡栏向上移动并可见。
感谢您的帮助。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用带有 EditText 的片段,并且其中没有滚动视图,但我仍然遇到这个问题。我的解决方案是将 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: