よくある質問(FAQ)

  • HOME
  • サポート
  • よくある質問(FAQ)
  • アプリケーションを通常とは反対の縦向き(180度回転)表示することはできますか?

アプリケーションを通常とは反対の縦向き(180度回転)表示することはできますか?

AndroidManifest.xmlのactivityにて画面の向きを固定することが可能です。

▼画面向き設定

画面の向き 設定内容
縦向き android:screenOrientation=”portrait”
横向き android:screenOrientation=”landscape”
反対方向の縦向き android:screenOrientation=”reversePortrait”
反対方向の横向き android:screenOrientation=”reverseLandscape”



▼例

<activity
    android:name=".MainActivity"
    android:exported="true"
    android:screenOrientation="portrait"
    tools:ignore="LockedOrientationActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>




※画面固定の設定をした場合、下記の警告が出ることがあります。
Expecting `android:screenOrientation=”unspecified”` or `”fullSensor”` for this activity so the user can use the application in any orientation and provide a great experience on Chrome OS devices

画面を固定するとユーザエクスペリエンスが損なわれるため、固定しない設定を推奨するというものです。
警告が気になる場合は 「tools:ignore=”LockedOrientationActivity”」を設定に追加することで警告が出ないようにできます