如何在android中使用不同的分辨率?
我必须准备一个应用程序。我想支持不同的分辨率。我必须准备不同的布局。第一次我的布局是,
res/layout/mylayout----7" normal screen
res/layout-large/mylayout----7" large screen
res/layout-xlarge/mylayout---10.1"
但它需要 7 英寸大屏幕。我在这个网站上找到了一些解决方案。解决方案是,创建布局是的,
res/layout/mylayout----7" normal screen
res/layout-sw600dp/mylayout----7" large screen
res/layout-sw720/mylayout---10.1"
更改布局名称后,它仅占用 7 英寸大屏幕。请帮我做。
I have to prepare one application.I want give support to different resolution.i have to prepared different layouts.Frist time my layouts is,
res/layout/mylayout----7" normal screen
res/layout-large/mylayout----7" large screen
res/layout-xlarge/mylayout---10.1"
but it is taking 7" large screen.i found some solution in this site.Solution is ,create layout is,
res/layout/mylayout----7" normal screen
res/layout-sw600dp/mylayout----7" large screen
res/layout-sw720/mylayout---10.1"
After changed layout names it is taking 7" large screen only. please help me do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查您的项目构建目标要支持 xlarge 屏幕,您的项目构建目标至少应为 android 2.3.3 adk。
在 Eclipse 中 -?右键单击项目 ->属性->安卓->选择 Project Build Tagrget 为 2.3.3 或更高版本。
首先,在 Android 应用程序清单文件中设置多屏幕支持
,另请参阅此链接
Check your project Build Target To support xlarge screen your project build target should be atleast android 2.3.3 adk.
In Eclipse -?right click on project -> Properties -> Android -> Select Project Build Tagrget as 2.3.3 or onwards.
First of all set the multiple screen support in your Android Application manifest file
And also see this Link