避免通过虚拟键盘隐藏控件
在我的应用程序中有一些 EditText 控件。当虚拟键盘出现时,它会隐藏其中一些控件。 我怎样才能“收缩”我的显示器以避免这种情况? 我的基本布局是 LinearLayout。 谢谢, 埃亚尔。
In my application there are some EditText controls. When virtual keyboard appears it hides some of these controls.
How can I "shink" my display to avoid this?
My base layout is LinearLayout.
Thanks,
Eyal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在您的 Activity 的
AndroidManifest.xml
中为android:windowSoftInputMode
属性使用adjustResize
值:You should use
adjustResize
value forandroid:windowSoftInputMode
attribute inAndroidManifest.xml
for your activity :