我有 3 个不同的布局文件
layout/
main.xml
layout-large/
main.xml
layout-sw600dp/
main.xml
我的 nexus 7 一直在使用layout/main.xml
我必须做些什么才能让它使用该layout-sw600dp/main.xml
文件吗?
我有 3 个不同的布局文件
layout/
main.xml
layout-large/
main.xml
layout-sw600dp/
main.xml
我的 nexus 7 一直在使用layout/main.xml
我必须做些什么才能让它使用该layout-sw600dp/main.xml
文件吗?
文档没有提到它,但你必须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>