在纵向模式下限制应用程序时,电子邮件作曲家以横向模式显示(android + phonegap)

时间:2013-08-24 03:43:54

标签: android plugins cordova

我在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>

1 个答案:

答案 0 :(得分:0)

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

             android:screenOrientation="portrait"

在所有活动中,

试一下

            android:screenOrientation="portrait"
            android:configChanges="orientation"