有没有机会让键盘显示在选项卡图标上
我的活动底部有标签。问题是我在活动中有 TextView,当我想编写文本时,键盘会显示,但键盘会抬起底部选项卡图标并使 TextView 部分不可见。是否有机会使键盘显示在选项卡图标上(而不是抬起底部选项卡图标)?
I have tabs at the bottom on my activity. Problem is that I have TextViews on activity and when I want to write text, keyboard shows but keyboard lift up bottom tab icons and make partly invisible TextView. Is there any chance to make keyboard to shows over tab icons ( not to lift up bottom tab icons) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须查看
android :windowSoftInputMode
具有属性adjustResize
和adjustPan
。从链接中我猜想在清单文件中添加
android:windowSoftInputMode="adjustResize|adjustPan"
应该可以解决您的问题。You will have to look around the
android:windowSoftInputMode
which has attributesadjustResize
andadjustPan
.From the link I guess adding
android:windowSoftInputMode="adjustResize|adjustPan"
in the Manifest file should do the trick for you.尝试在清单中使用您的活动的 softInputMode 值,看看什么适合您的情况。
Try playing around with the softInputMode values of your activity in the manifest, and see what works for your situation.