欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android XML設置屏幕方向(android:screenOrientation)详解

程序员文章站 2023-11-06 19:29:58
android  xml設置屏幕方向(android:screenorientation)详解 注意:android只支持270度旋转。 &...

android  xml設置屏幕方向(android:screenorientation)详解

注意:android只支持270度旋转。

 

<activity android:name=".myactivity"
        android:label="@string/app_name"
        android:screenorientation="portrait">

android:screenorientation设定该活动的方向, 该值可以是任何一个下面的字符串:

"unspecified"

- 默认值. 由系统选择显示方向. 在不同的设备可能会有所不同.

"landscape"

- 橫向

"portrait"

- 纵向

"user"

- 用戶当前的首选方向

"behind"

- 与在活动堆栈下的活动相同方向

"sensor"

- 根据物理方向传感器确定方向. 取决于用戶手持的方向, 当用戶转动设备, 它跟隨改变.

"nosensor"

- 不经物理方向传感器確定方向. 该传感器被忽略, 所以当用戶转动设备, 显示不會跟隨改变. 除了这个区别,系統选择使用相同的政策取向对于“未指定”设置. 系統根据“未指定”("unspecified")设定选择相同显示方向.

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!