表示画面の回転を静的に設定したい場合は、マニフェストXMLのscreenOrientationを設定します。
<activity android:name=".TestActivity" android:label="@string/app_name" android:screenOrientation="portrait"/>
screenOrientationの値にはportrait(縦固定)以外に、landscape(横固定)や、unspecified(システムに従う)などがあります。
表示画面の回転を静的に設定したい場合は、マニフェストXMLのscreenOrientationを設定します。
<activity android:name=".TestActivity" android:label="@string/app_name" android:screenOrientation="portrait"/>
screenOrientationの値にはportrait(縦固定)以外に、landscape(横固定)や、unspecified(システムに従う)などがあります。