我有3种不同的布局文件
layout/
main.xml
layout-large/
main.xml
layout-sw600dp/
main.xml
我的nexus 7始终使用layout/main.xml
我是否需要做些什么才能让它使用layout-sw600dp/main.xml
文件?
答案 0 :(得分:2)
文档没有提到它,但您必须在AndroidManifest.xml中设置supports-screens
<?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>