如何获取Android上屏幕工作区域的高度
我正在 Android 上编写一个阅读应用程序。要分隔页面上的文本,我必须获得应用程序屏幕的高度,没有状态栏。如何做到这一点?
I am writing a reading application on Android. To separate the text on pages I must get a height of screen of application, without status bars. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
给出屏幕宽度和高度。
Try this
gives screen width and height.
你的问题不是很清楚,但在android中你可以获得任何View子类的高度,所以你可以简单地
找到你的主视图
和getHeight
()(获取其高度)。无论如何,如果您希望人们能够帮助您,您应该尝试比这更具体。
Your question is not very clear but in android you can get the height of any subClass of View so you can simply
find your main View
andgetHeight
() (get its height).in any case you should try to be a lot more specific then this if you want people to be able to help you.
选项一:
然后,在您的用例中:
或者简单地使用:
如果您在活动内部执行此操作,则删除“视图”。
第二个选项更好,因为它考虑了设备的旋转。
Option one:
then, in your use case:
or simply use:
if you do it inside of an Activity, then remove the "view."
The second option is better, because it considers the rotations of your device.