반응형
[안드로이드] 화면 세로모드 고정, 화면 가로모드 고정
AndroidManifest.xml 에서
<activity> 안에
android:screenOrientation="portrait" 또는 "landscape" 를 추가해주면 됩니다.
portrait 은 세로로 고정
landscape 는 가로로 고정
둘 중 한가지만 써야합니다.
<activity android:name=".MainActivity"
android:screenOrientation="portrait" //화면을 세로로 고정
android:screenOrientation="landscape"> //화면을 가로로 고정
</activity>
반응형
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[안드로이드] extends Fragment 구현시 context 구하는 방법 (1) | 2016.08.01 |
---|---|
[안드로이드] intent 인터넷, 브라우저 띄우기 (0) | 2016.07.28 |
[안드로이드 + 자바] 정규표현식 Patten Match 및 검증방법 (0) | 2016.07.27 |
[안드로이드] 안드로이드스튜디오에서 deprecated된 httpclient 사용하기 (0) | 2016.07.26 |
[안드로이드] 스프링 안드로이드 post 테스트 (링크) (0) | 2016.07.26 |