活动setRequestedOrientation landscape与reverseLandscape?

时间:2011-03-18 19:03:08

标签: android android-activity orientation landscape portrait

是否可以设置活动的方向(在清单中或使用setRequestedOrientation)并指定要使用的横向或纵向模式?即我可以选择设备的左侧还是右侧?

2.1似乎不可能,但我想知道是否有人有任何变通办法?

where is this used

2 个答案:

答案 0 :(得分:1)

在清单中定义活动时,您可以指定方向。

<activity
    android:screenOrientation="landscape" />

只会在风景中显示。

答案 1 :(得分:1)

您可以尝试setRequestedOrientation(8)。

attribute本身来自API 1,而reverseLandscape的常量来自第9级。没有常量它可能仍然有用吗? Idk,认为值得一试。