如何为平板电脑大小的屏幕构建 Android 应用程序?

发布于 2025-01-01 10:23:08 字数 99 浏览 2 评论 0原文

我已将 NetBeans 设置为在我的 Asus Transformet 平板电脑上运行我的应用程序,但是,它使用手机屏幕的大小运行,然后在屏幕上拉伸。如何修复它以使用平板电脑分辨率?

I've set up NetBeans to run my app on my Asus Transformet tablet, however, it runs using the size of a phone screen, and then gets stretched over the screen. How do I fix it so it uses the tablets resolution?

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

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

发布评论

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

评论(2

梦里泪两行 2025-01-08 10:23:08

您可以根据屏幕尺寸定制布局。例如,如果您有一个 xlarge 屏幕,您可以创建布局文件夹“layout-xlarge”和“layout-xlarge-land”。在这些文件夹中,您可以放置​​布局(具有相同的名称和变量名称),但可以根据需要更改布局。

我也建议阅读此内容:
http://developer.android.com/guide/practices/screens_support.html

You can have custom layouts depending on the size of the screen. For example if you have a xlarge screen you can create the layout folder 'layout-xlarge' and 'layout-xlarge-land'. In these folders you can put the layouts (with the same name and variable names) but change the layout as needed.

I'd suggest reading this as well:
http://developer.android.com/guide/practices/screens_support.html

夏花。依旧 2025-01-08 10:23:08
<uses-sdk android:minSdkVersion="4"
          android:targetSdkVersion="11" />

使用 targetSDK = 11 以平板电脑为目标。您的 UI 将自动缩放到平板电脑尺寸。如果您的应用程序应在 Android 1.6 或更高版本的手机上运行,​​请使用 minSdKVersion = 4

有关更多 API 级别,您可以查看此内容, http://developer.android.com/guide/appendix/api-levels.html

<uses-sdk android:minSdkVersion="4"
          android:targetSdkVersion="11" />

Use targetSDK = 11 to target for the tablets. Your UI will automatically scale to the tablet size. Use minSdKVersion = 4, if your app should run on phones with Android 1.6 or more

For more API levels, you can check this out, http://developer.android.com/guide/appendix/api-levels.html

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