2013-07-20 58 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"); 
相關問題