【发布时间】:2014-01-26 17:00:50
【问题描述】:
即使设备旋转,我希望我的活动保持它开始时的方向,无论是纵向还是横向。 API 级别 18 引入了 android:screenOrientation=”locked” 应该可以完成这项工作:Locks the orientation to its current rotation, whatever that is.
但是,我还想支持较旧的操作系统版本。我怎样才能做到这一点?
我知道Lock screen orientation (Android) 讨论了横向模式下的锁定活动,How do I disable orientation change on Android? 讨论了纵向模式下的锁定活动(这在三星 Galaxy S、OS 2.3.3 上根本不适合我)。我也知道advice recommending not to do this。
【问题讨论】:
标签: android android-activity screen-orientation android-orientation