我是 android 编程新手,但我遇到了方向问题。
我希望我的活动只能在纵向和反向纵向和方向中查看。
我以为android:screenOrientation="portrait|reversePortrait"
会起作用,但它不起作用。有没有办法在清单文件中做到这一点?
我是 android 编程新手,但我遇到了方向问题。
我希望我的活动只能在纵向和反向纵向和方向中查看。
我以为android:screenOrientation="portrait|reversePortrait"
会起作用,但它不起作用。有没有办法在清单文件中做到这一点?
请查看文档:http: //developer.android.com/guide/topics/manifest/activity-element.html#screen
在 API 9+ 中添加了纵向,但可以是基于设备传感器的正常或反向纵向。所以你可以android:screenOrientation="sensorPortrait"
同时使用。