如何为平板电脑大小的屏幕构建 Android 应用程序?
我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以根据屏幕尺寸定制布局。例如,如果您有一个 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
使用 targetSDK = 11 以平板电脑为目标。您的 UI 将自动缩放到平板电脑尺寸。如果您的应用程序应在 Android 1.6 或更高版本的手机上运行,请使用 minSdKVersion = 4
有关更多 API 级别,您可以查看此内容, http://developer.android.com/guide/appendix/api-levels.html
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