Phonegap 禁止手机横屏竖屏自动旋转

方法:

在AndroidManifest.xml的<activity>标签里面加入下面代码 android:screenOrientation=”portrait”属性即可(portrait是纵向,landscape是横向),事例代码如下:

<activity
    android:name="com.example.test.MainActivity"
    android:label="@string/app_name"
    android:screenOrientation="portrait" >

 

 

 

 

 

 

 

 

posted @ 2014-06-29 11:26  hereim  阅读(346)  评论(0编辑  收藏  举报