0

すべてのアクティビティがxmlマニフェストファイルで横向きに設定されているAndroidゲームを作成しています。

ただし、新しいアクティビティに移動すると、横向きに修正する前に、縦向きで一瞬点滅することがあります。

これが一般的な理由がある人はいますか?

ScheduledFuture を使用するレベル完了画面を早く終了すると発生します。

ありがとうアンディ

編集 (マニフェスト):

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.appsolutely.sheepherder.Main"
        android:label="@string/app_name"
        android:screenOrientation="landscape" >
    </activity>
    <activity
        android:name="com.appsolutely.sheepherder.Game"
        android:label="@string/title_activity_game"
        android:screenOrientation="landscape" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.appsolutely.sheepherder.LevelSelect" />
    </activity>
    <activity
        android:name="com.appsolutely.sheepherder.LevelSelect"
        android:label="@string/title_activity_level_select"
        android:screenOrientation="landscape" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.appsolutely.sheepherder.Main" />
    </activity>
    <activity
        android:name="com.appsolutely.sheepherder.Splash"
        android:label="@string/app_name"
        android:screenOrientation="landscape" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.appsolutely.sheepherder.Plague"
        android:label="@string/title_activity_plague"
        android:screenOrientation="landscape"  >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.appsolutely.sheepherder.Main" />
    </activity>
</application>

4

1 に答える 1

0

screenOrientationマニフェストに追加してみてください:

<activity android:screenOrientation="sensorLandscape" ...>

sensorLandscapeデバイスを右または左に回転させるかどうかをユーザーが選択できるように使用することをお勧めします。

于 2013-02-04T17:59:53.203 に答える