0

minSdkVersion が 11 で targetSdkVersion が 17 の Android アプリケーションを開発しています。複数の画面サイズ用にこのアプリを設計しています。だから私はすべての画面のサポートをマニフェスト ファイルに入れました。このアプリがすべての密度をサポートすることを望みます。

私の Manifest.xml コード:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android"
    android:versionCode="1"
    android:versionName="1.0" >

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


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

    <application
        android:debuggable="true"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:name="CommApp" >


        <activity
            android:name="com.example.android.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 android:name="First"
              android:screenOrientation="portrait"
              ></activity>

         <activity android:name="Second"
              android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
            ></activity>



    </application>

</manifest>

res/layout-small、res/layout-normal、res/layout-large、res/layout-xlarge としてすべての画面サイズのレイアウト フォルダーを作成しました。このアプリケーションを画面サイズ 720x1280 のエミュレーターで実行したいのですが、このデバイス用にすべてのレイアウト ファイルを res/layout-xlarge フォルダーに作成しました。しかし、実行中に次のエラーが表示されます。

Invalid attribute value syntax for android:largescreens: = "true"
            android:xlargeScreens="true"
            android:anyDensity="true"/

何が悪いのかわからない?どなたか解決策を教えてください。前もって感謝します。

4

1 に答える 1