画像の表示向きの固定

画像の表示向きの固定
アプリの表示向きを、固定するには
AndroidManifest.xml

activityタグへ
android:screenOrientation属性を設定する
もし、縦長レイアウト固定にするなら
portrait
を指定する
ソースにすると
android:screenOrientation=”portrait”
android:screenOrientation属性の設定値には
unspecified
デフォルト設定
ユーザー操作で変わる
landscape
常に横長
portrait
常に縦長
user
ユーザーの現在の設定に従う
behind
親アクティビティの画面レイアウトに従い表示
sensor
傾きセンサーに従い表示
ユーザー操作でも変わる
nosensor
傾きセンサーを、無視
ユーザー操作も無効化
画像の表示向きの固定
アプリの表示向きを、固定するには
AndroidManifest.xml

activityタグへ
android:screenOrientation属性を設定する
もし、縦長レイアウト固定にするなら
portrait
を指定する
ソースにすると
android:screenOrientation=”portrait”
android:screenOrientation属性の設定値には
unspecified
デフォルト設定
ユーザー操作で変わる
landscape
常に横長
portrait
常に縦長
user
ユーザーの現在の設定に従う
behind
親アクティビティの画面レイアウトに従い表示
sensor
傾きセンサーに従い表示
ユーザー操作でも変わる
nosensor
傾きセンサーを、無視
ユーザー操作も無効化

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です