0

アプリを設計しましたが、Google Play に次のように表示されます: あなたのアプリはタブレット用に設計されていません。どうすればこれを修正できますか?

stackoverflow と google で答えを見つけようとしましたが、解決策が見つかりません。

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.solidos.neshaniha.FullscreenActivity"
        android:configChanges="orientation|keyboardHidden|screenSize"
        android:label="@string/app_name"
        android:theme="@style/FullscreenTheme" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

4

2 に答える 2

0

タブレット用のレイアウトが作成されていることを確認してください。そして交換するだけ

android:configChanges="orientation|keyboardHidden|screenSize"

android:configChanges="orientation|keyboardHidden

"

于 2013-09-30T11:02:23.837 に答える