如何根据设备屏幕大小加载特定的xml布局文件?

时间:2012-09-25 11:24:25

标签: android android-screen-support xml-layout

我已尝试使用此devoloper link

上提供的这些说明

我需要在分辨率为1024x768的设备上加载res/layout-w1024dp-h768dp/activity_main.xml或者是默认的xml文件,所以我配置了AVD,我的项目资源管理器如下所示 enter image description here

我已经尝试了所有,但它没有在该规范的AVD上工作.. 任何人都可以帮帮我...

这里是清单文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fm_player"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="15" />

<supports-screens android:requiresSmallestWidthDp="768" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

1 个答案:

答案 0 :(得分:1)

Android可以在文件夹名称中处理两种不同的分辨率吗?

您是否尝试过使用:

res/layout-sw768dp

从宽度和高度开始,最短长度为768?