Android 应用程序不占据整个屏幕

发布于 2024-11-25 17:48:12 字数 284 浏览 1 评论 0原文

我试图在自定义屏幕分辨率上运行我的应用程序,但我的应用程序居中,仅占据屏幕的 320x480(纵向)和 480x320(横向),并且与 Activity 的顶部水平对齐。

虽然其他应用程序和默认的 Android 活动表现得很好,但我的应用程序却不然。我没有使用任何固定值或布局属性。这只是一个你好世界应用程序。

在此处输入图像描述

我尝试过主题和窗口功能,但似乎没有任何效果。任何指示将不胜感激。谢谢。

I am trying to run my application on a custom screen resolution but my application is centered and only occupies 320x480 (Portrait) and 480x320 (Landscape) of the screen and is horizontally aligned to the top of the activity.

While other apps and the default android activities behave aptly my application doesn't. I haven't used any fixed values or layout properties. It's just a hello world app.

enter image description here

I have tried themes and window features but nothing seem to work. Any pointers would be greatly appreciated. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最近可好 2024-12-02 17:48:12

Kumar Bibek 在类似的帖子< /a>.

该应用程序在平板电脑兼容模式下运行。我将以下内容添加到我的 AndroidManifest.xml 中,它工作正常。

<supports-screens android:largeScreens="true"
      android:normalScreens="true" android:smallScreens="true"
      android:anyDensity="true" android:xlargeScreens="false" />

Kumar Bibek has answerd this question in a similar post.

The application was running in compatibility mode for tablets. I added the following to my AndroidManifest.xml and it works fine.

<supports-screens android:largeScreens="true"
      android:normalScreens="true" android:smallScreens="true"
      android:anyDensity="true" android:xlargeScreens="false" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文