我的活动在清单中使用android:screenOrientation="portrait"
强制纵向模式。但是,我的一些用户(在平板电脑模式下默认使用平板电脑)要求我将其设为可配置选项。是否可以在代码中设置方向(不触发方向更改动画,因此在实际显示活动之前)?
答案 0 :(得分:1)
是的,只需致电:
Activity.setRequestedOrientation (int requestedOrientation)
取自
http://developer.android.com/reference/android/app/Activity.html#setRequestedOrientation%28int%29
如果您想在设置后锁定屏幕方向,请查看以下文章: