가로 모드(또는 세로 모드)로 가는 회전 막기

mainfests 폴더 안에 AndroidMainfest.xml이 있을 것임.

그 안에 <activity android:name = ".~~~"></activity> 노드가 있는데 세로 모드만 할 경우 android:screenOrientation="portrait" 속성을 추가해주면 된다.

<activity android:name=".MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait">            
</activity>

가로 모드만 할 경우 android:screenOrientation="landscape" 라고 넣어주면 된다.

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP