Digital Recipe
Activity를 landscope 형태로 고정하기 본문
수행 되는 Activity를 가로형태의 landscope 형태로 고정을 하기 위해서는
AndroidManifest.xml을 수정하면 된다.
AndroidManifest 안의 고정하고자 하는 Activity 안에 android:screenOrientation="landscape" 라는 속성을
추가해 주면 해결완료.
예시)
<activity android:name=".App_Mode"
android:label="@string/app_name"
android:screenOrientation="landscape"
>
</activity>
Comments