[android] 폰캡 화면 고정
html에서 화면을 고정하는 방법과
jquery mobie에서 고정하는 방법을 찾아 보았는데
가장 쉬운 방법은 android AndroidManifest.xml 에서 설정하는 것이었다.
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
android:label="@string/app_name"
android:name="HelloWorld"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:screenOrientation="portrait"
>
결과적으로 간단하게 화면이 고정되었고
모바일웹의 화면을 그대로 하나의 방향에서 설정해 사용 할 수 잇게 되었다.
화면을 고정하게 되었으므로 조금더 자유롭게 화면을 꾸며봐야겠다.
[android] 폰캡 화면 고정
'programming > android' 카테고리의 다른 글
[android studio] 오류 : The SDK platform-tools version(25.0.6) is too old to check APIs compiled with API 26 (0) | 2017.10.17 |
---|---|
[android] 디컴파일 하기 (0) | 2015.03.18 |
[android] 안드로이드 에뮬레이터 한글 키보드 설치하기 (0) | 2013.04.24 |
[android] 넥서스원 공기계가 돼다 (0) | 2013.04.24 |
[android] 하이브리드앱 JQuery mobile Sample (0) | 2013.04.11 |