디바이스를 회전 시킬때마다 자동으로 회전되는것을 막는 방법이다.
매니페스트에 있는 <Activity> 안에 한줄의 코드를 추가 해 주면 된다.
android:screenOrientation="portrait"
또는
android:screenOrientation="landscape"
portrait 은 세로모드이고 landscape 는 가로 모드 이다.
Ex)
<activity
android:name="com.example"
android:label="@string/app_name"
android:screenOrientation="portrait" >
'Development > Android' 카테고리의 다른 글
Tstore 과금창 검은화면 뜨는 경우 (0) | 2013.11.16 |
---|---|
TNK 개발 순서 (0) | 2013.10.01 |
안드로이드 언어코드 가져오기 (0) | 2013.09.03 |
RuntimeException: Unable to start activity ComponentInfo (0) | 2013.08.22 |
안드로이드 인앱 빌링 v3 (0) | 2013.08.22 |