0
res/layout/main_activity.xml           
res/layout-small/main_activity.xml   
res/layout-large/main_activity.xml   
res/layout-xlarge/main_activity.xml
res/layout-xlarge-land/main_activity.xml

名前が同じで内部のテキスト メッセージが異なる 2 つのレイアウト ファイルがあります。アプリケーションをSamsung-Galaxy 10.1 or Google Nexus 7インチ タブレットまたは密度が高いエミュレータにロードしようとすると1024dp * 600dp、常に res/layout/main_activity.xml がロードされます。

ここでどのような間違いをしているのかわかりません。以下はマニフェストファイルです。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sample"
    android:versionCode="2"
    android:versionName="2.3.4" >

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

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


    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
        <activity
            android:name=".Splash"
            android:label="@string/title_activity_splash"
             >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name=".Trial"
            android:label="@string/title_activity_trial"
            android:exported="false"
             >
            <intent-filter>
                <action android:name="com.sample.TRIAL" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

    </application>

</manifest>

そして、私は 4.1.1.4 バージョンの android.jar を使用しています。

    <dependency>
        <groupId>com.google.android</groupId>
        <artifactId>android</artifactId>
        <version>4.1.1.4</version>
        <scope>provided</scope>
    </dependency>
4

1 に答える 1

0

このチャートによると、1024x600 は に分類されxlargeます。タグに xlarge が記載されていません<support-screens>

于 2012-10-16T16:22:03.507 に答える