画面の向きを指定する

アプリの画面の向きを指定するには、AndroidManifest.xmlに

縦向きの時、
<activity
android:screenOrientation=”portrait”>

横向きの時、
<activity
android:screenOrientation=”landscape”>

と書けばいいみたいです。

縦向き:

orientation

横向き:

orientation2

< ?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.sample"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Sample"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent -filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent>
</activity>

<activity android:name=".NextPage">
</activity>

</application>


</manifest>

その他のコードは、Intentを使って、Activityを呼び出す

と同じです。

中堅サーバエンジニア

中堅サーバエンジニア現在Unity勉強中

都内で10数年、Web系のアプリケーション開発をしています。 プログラミング、ゲーム、株とかのブログを書いています。

関連記事

コメント

この記事へのコメントはありません。