デフォルトでは端末の向きによって、画面が回転する。
向きを固定したい場合は、AndroidManifest.xmlに設定を書き込めばOK。
activity要素に、android:screenOrientation属性を追加してあげればよい。
-
横固定の場合=landscape
-
縦固定の場合=portrait
詳細なリファレンスはこちら
http://developer.android.com/intl/ja/guide/topics/manifest/activity-element.html
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="xxx.xxx.xxxx.test"> <application> <activity android:name=".MyActivity" android:label="@string/app_name" android:screenOrientation="landscape"> : </activity> </application> </manifest>
コメントをお書きください