我正在使用适用于Android的PhoneGap(1.4.1)创建HTML / JS / CSS应用程序。在App中,我使用PhoneGap ChildBrowser插件来显示外部内容。
我希望将App的方向保持为横向,同时允许ChildBrowser旋转到设备的方向。
我尝试在每个活动上应用不同的android:screenOrientation =“”设置,如下所示,但这似乎不起作用。
<activity
android:name="com.phonegap.DroidGap"
android:screenOrientation="sensorLandscape" >
<intent-filter>
....
</intent-filter>
</activity>
<activity
android:name="com.phonegap.plugins.childBrowser.ChildBrowser"
android:screenOrientation="sensor" >
<intent-filter>
....
</intent-filter>
</activity>
这甚至可能吗?
非常感谢任何帮助!