如何获取Android上屏幕工作区域的高度

发布于 2024-12-22 21:23:56 字数 70 浏览 1 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

彼岸花ソ最美的依靠 2024-12-29 21:23:56

尝试

int width=getWindow().getWindowManager().getDefaultDisplay().getWidth();
int height=getWindow().getWindowManager().getDefaultDisplay().getHeight();

给出屏幕宽度和高度。

Try this

int width=getWindow().getWindowManager().getDefaultDisplay().getWidth();
int height=getWindow().getWindowManager().getDefaultDisplay().getHeight();

gives screen width and height.

执手闯天涯 2024-12-29 21:23:56

你的问题不是很清楚,但在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 and getHeight() (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.

神经大条 2024-12-29 21:23:56

选项一:

import android.content.res.Resources;

然后,在您的用例中:

var screenWidth = Resources.getSystem().displayMetrics.heightPixels
var screenHeight = Resources.getSystem().displayMetrics.widthPixels

或者简单地使用:

var height = view.measuredHeight
var width = view.measuredWidth

如果您在活动内部执行此操作,则删除“视图”。

第二个选项更好,因为它考虑了设备的旋转。

Option one:

import android.content.res.Resources;

then, in your use case:

var screenWidth = Resources.getSystem().displayMetrics.heightPixels
var screenHeight = Resources.getSystem().displayMetrics.widthPixels

or simply use:

var height = view.measuredHeight
var width = view.measuredWidth

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文