公告

轉載請附原始文章連結

2013年11月30日 星期六

Android screenOrientation 設定螢幕顯示方向模式

Keyword search:螢幕、方向、顯示、設定、修改、方式

修改專案下的
AndroidManifest.xml

系統預設值:
unspecified
android:screenOrientation="unspecified"

強制橫屏方向:
landscape
android:screenOrientation="landscape"

強制豎屏方向:
portrait
android:screenOrientation="portrait"

切為當前使用者指定的方向:
user
android:screenOrientation="user"

切為當前activity的下方activity所設定的方向:
behind
android:screenOrientation="behind"

使用感測器的方向:
sensor
android:screenOrientation="sensor"

不使用感測器,這個效果差不多等於unspecified:
nosensor
android:screenOrientation="nosensor"

Sample:
<manifest  ...>

  <application  ...>

    <activity  ...

      android:screenOrientation="landscape"

    </activity>

  </application>

</manifest>

沒有留言:

張貼留言