0

我有 3 个不同的布局文件

layout/
    main.xml
layout-large/
    main.xml
layout-sw600dp/
    main.xml

我的 nexus 7 一直在使用layout/main.xml

我必须做些什么才能让它使用该layout-sw600dp/main.xml文件吗?

4

1 回答 1

2

文档没有提到它,但你必须supports-screens在 AndroidManifest.xml 中正确设置

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.gpsinsight.gpsandroid"                                                             
      android:versionCode="1"
      android:versionName="1.0">
    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"        android:largeScreens="true"
        android:xlargeScreens="true" />
    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <activity android:name="MainActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
于 2012-12-29T22:52:13.310 回答