我正在 phonegap 中创建一个 android 应用程序,它的方向是纵向模式
我正在使用 HTML5 视频标签在平板电脑中播放视频
但来到视频它应该在横向模式下播放。
我怎样才能做到这一点?
请帮助我解决这个问题,因为我是 phonegap 的新手
谢谢
我正在 phonegap 中创建一个 android 应用程序,它的方向是纵向模式
我正在使用 HTML5 视频标签在平板电脑中播放视频
但来到视频它应该在横向模式下播放。
我怎样才能做到这一点?
请帮助我解决这个问题,因为我是 phonegap 的新手
谢谢
You can change the orientation mode in an Android Phonegap app using this plugin. The version on GitHub is out-of-date and doesn't work with recent versions of Phonegap but I have updated it - you can find the source code in my answer to this question or download my Eclipse test project which includes the updated code.
You should be able to use the plugin to set your app into landscape mode on playing a video:
cordova.require('cordova/plugin/screenorientation').set("landscape");
and restore it to portrait on stopping the video:
cordova.require('cordova/plugin/screenorientation').set("portrait");
你不能在phonegap中改变它。
您可以在 AndroidManifest.xml 中设置它,只需添加
android:screenOrientation="landscape"
给你的<activity>
但是随后,整个应用程序将设置为横向。