在phonegap构建中的Android方向?

时间:2015-06-25 07:39:04

标签: cordova phonegap-build screen-orientation

无论如何在config.xml中声明这段代码(android.manifest在phonegap构建中不存在):

<activity
            android:name=".Activity.SplashScreenActivity"
            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>

我想在我的应用程序中随时强制出现风景,其他声明似乎不起作用......有什么想法吗?

2 个答案:

答案 0 :(得分:1)

@totothegreat, 您可以从之前的帖子中回忆起这个:

  

最后,如果你想用config.xml实现这个,那么我建议   你read the thread with Ben Jones' implementation。祝你好运,发短信   我回来了,如果你还有问题的话。

这篇文章中有什么不明确的地方吗?需要解释的东西?

杰西

答案 1 :(得分:0)

您必须在config.xml中添加以下行:

<preference name="Orientation" value="landscape" />

Documentation