如何在android中使用不同的分辨率?

发布于 2025-01-04 01:38:09 字数 432 浏览 0 评论 0原文

我必须准备一个应用程序。我想支持不同的分辨率。我必须准备不同的布局。第一次我的布局是,

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

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

发布评论

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

评论(2

☆獨立☆ 2025-01-11 01:38:09

检查您的项目构建目标要支持 xlarge 屏幕,您的项目构建目标至少应为 android 2.3.3 adk。

在 Eclipse 中 -?右键单击项目 ->属性->安卓->选择 Project Build Tagrget 为 2.3.3 或更高版本。

首先,在 Android 应用程序清单文件中设置多屏幕支持

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

,另请参阅此链接

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

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

And also see this Link

驱逐舰岛风号 2025-01-11 01:38:09
 For mulitple screen support   Try by using this... in ur android manifest file
        <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true"
         />
 For mulitple screen support   Try by using this... in ur android manifest file
        <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true"
         />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文