본문 바로가기

Android/AndroidManifest

안드로이드/Android screenOrientation (가로/세로 모드설정) 하기

안드로이드/Android screenOrientation (가로/세로 모드설정) 하기


안드로이드 프로젝트를 진행하다 보면, 가로 혹은 세로 모드로 진행해야 할 경우가 있습니다. 보통 폰단말에서는 가로모드를 많이 지원하고, 태블릿PC 에서는 세로 모드로 진행을 하는데요. 그렇다면 한가지 모드로 개발을 진행해야 할 경우 어떻게 설정을 해주어야 할까요?


속성은 바로 AndroidManifest.xml 에 추가해 주시면 됩니다.

<activity android:name="arabiannight.tistroy.com.ScreenOrientaion"
             android:screenOrientation="landscape"
             >


위에 보시는 바와 같이 모드를 설정하고자 하는 Activity"android:screenOrientation" 속성을 지정하는 것인데요.! 

landscape : 가로

portrait : 세로

모드를 나타 냅니다. 그러므로 상황에 맞는 모드를 선택하여 개발해 주시면 되겠습니다.!