0

我在phonegap中将我的应用程序限制为纵向模式。但是当我使用电子邮件编写器插件并打开电子邮件编写器时,它会以横向模式显示吗?为什么有任何方法可以仅以纵向模式显示电子邮件编辑器。?

<activity
            android:name=".Activity.SplashScreenActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait">
            <intent-filter>
                <action
                    android:name="android.intent.action.MAIN" />
                <category
                    android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
4

1 回答 1

0

实际上,您特别限制了一个活动处于纵向模式,它将仅应用您的 SplashScreenActivity。对于其他活动,它将保持为默认值。如果你想要这个用于其他活动,你也必须写

             android:screenOrientation="portrait"

在所有活动中,

尝试这个

            android:screenOrientation="portrait"
            android:configChanges="orientation"
于 2013-08-24T05:18:46.580 回答