有什么方法可以阻止 Android 中键盘出现标签吗?
我正在制作一个支持所有版本的 android 的应用程序(以防万一它相关),但是当用户单击应用程序时,键盘会弹出并随之移动选项卡。有没有办法阻止标签这样做?
I am making an app that supports all versions of android (just in case it is relevant), but when the user clicks on an app, the keyboard pops up and moves the tabs with it. Is there anyway to stop the tabs from doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在活动的清单文件中提供 android:windowSoftInputMode="adjustPan" 。
Try giving android:windowSoftInputMode="adjustPan" inside the manifest file for the activity.
在清单文件的 tabActivity 类中写入 android:windowSoftInputMode="adjustPan" 。
write this android:windowSoftInputMode="adjustPan" in tabActivity class in manifest file.