2020年5月31日 星期日

[ Android Studio ] 設定螢幕顯示方向模式 - screenOrientation


修改 AndroidManifest.xml 內容

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

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

直屏方向:
android:screenOrientation="portrait"

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

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

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

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

反向橫屏:
android:screenOrientation="reverseLandscape"

反向直屏
android:screenOrientation="reversePortrait"

傳感器橫屏:
android:screenOrientation="sensorLandscape"

傳感器直屏:
android:screenOrientation="sensorPortrait"

使用者指定的橫屏方向:
android:screenOrientation="userLandscape"

使用者指定的直屏方向:
android:screenOrientation="userPortrait"

已鎖定:
android:screenOrientation="locked"

方法:
<manifest  .......>

  <application  ......>

    <activity  .......

      android:screenOrientation="landscape">

    </activity>

  </application>

</manifest>

沒有留言:

張貼留言

影片的問題請留在影片的留言區裡。
部落格不會另外通知給我,所以很難發現你有留言。