android 가로모드 막기 & 세로모드 막기
폰을 기울이면 저절로 가로모드가 된다.
미리 설정했던 레이아웃이 깨지거나 아니면 특수한 상황에서 가로모드를 막기 위해 설정해 줄 필요가 있다.
우선 이클립스 에뮬레이터에서 가로모드 전환 방법은 Ctrl + F11 을 누르면 된다.
가로모드로 고정시키기 위해서는 AndroidManifest.xml 파일에 속성 하나만 추가해주면 된다.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kr.co.higgs.viewtest"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ViewTestActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="2" />
</manifest>
강조된 부분이 새로 추가한 부분이다.
속성값에 portrait 가 아닌 landscape 를 넣으면 가로모드만 실행된고 세로모드를 막게된다.
'scrap > Android' 카테고리의 다른 글
SQLite (0) | 2011.02.04 |
---|---|
android - 다수의 Insert 수행시 속도 향상을 위한 팁 (0) | 2011.02.03 |
android EditText tip (0) | 2011.02.03 |
[Android] 간단한 데이터의 저장/로드. SharedPreferences (0) | 2011.02.03 |
Android - 파일 입출력, 파일 공유, SD 카드 (0) | 2011.02.03 |