2013-07-20 59 views

回答

-1

你不能改变,在PhoneGap的。

可以将其设置在AndroidManifest.xml中,只需添加

android:screenOrientation="landscape" 

<activity>

但随后,整个应用程序将被设置为横向。

2

您可以在Android的PhoneGap应用程序中使用this plugin改变方向模式。在GitHub上的版本已过期,不与最新版本的PhoneGap的工作,但我已经更新了它 - 你可以找到源代码在我answer to this question或下载我Eclipse test project,其中包括更新的代码。

您应该能够使用该插件为您的应用设置成横向模式上播放视频:

cordova.require('cordova/plugin/screenorientation').set("landscape"); 

,并恢复对肖像停止视频:

cordova.require('cordova/plugin/screenorientation').set("portrait"); 
相关问题