2015-09-26

Android アプリの画面向きを固定

スポンサーリンク

新規に作成した Android Studio Project は Android デバイスの傾きによって、縦画面と横画面を自動で切り替えてくれる設定になっています。アプリによっては縦画面固定や横画面固定のユーザーインターフェースを前提として作成したい場合があると思います。

アプリの画面を固定するには "AndroidManifest.xml" を編集し、アクティビティごとに以下の属性を追加します。
  • 縦画面固定の場合
activity android:screenOrientation="portrait"
  • 横画面固定の場合
activity android:screenOrientation="landscape"

以下に横画面固定の場合の "AndroidManifest.xml" のサンプルを示します。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.helloworld" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="landscape" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

実行してみると Android デバイスが縦向きの場合でも、アプリの画面が横向きに固定されている様子が確認できます。
スポンサーリンク

0 件のコメント:

コメントを投稿