Please Enable JavaScript!
Gon[ Enable JavaScript ]

안드로이드(Android) 가로 세로 모드 자동회전 고정하는 방법

안드로이드 개발
반응형

안드로이드(Android) 가로 세로 모드 자동회전 고정하는 방법

 

환경 : Eclipse Mars, Android 4.2.2

 

AndroidManifest.xml 에 화면을 고정하고 싶은 activity 화면은 screenOrientation 옵션값을 portrait/landscape 중 하나로 셋팅 하시면 됩니다. Portrait 은 세로로 고정하는 것이고 landscape 는 가로로 고정하는 것입니다. 화면 회전 버튼을 눌러도 변경되지 않게 됩니다.

 

단말기 방향을 유지하기 위해 셋팅하는 곳은 AndroidMenifest.xml  입니다. Xml 내부에 activity 를 추가할 때 screenOrientation 속성값을 주면 됩니다. 화면을 세로로 유지하기 위한 방법은 다음과 같습니다android:screenOrientation portrait 를 입력합니다.

<activity
    android:name=".EditTextActivity"
    android:label="@string/title_activity_edit_text" 
    android:screenOrientation="portrait">

 

안드로이드(Android) 가로 세로 모드 자동회전 고정하는 방법

화면을 가로로 유지하기 위한 방법은 다음과 같습니다. Android:screenOrientation landscape 를 입력합니다.

 

<activity
    android:name=".EditTextActivity"
    android:label="@string/title_activity_edit_text" 
    android:screenOrientation="landscape">

 

안드로이드(Android) 가로 세로 모드 자동회전 고정하는 방법

 

반응형
Posted by 녹두장군1
,