<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="exam.test"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".TestActivity"
android:label="@string/app_name" android:configChanges="orientation" android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
현재 AndroidManifest.xml 은 이런식으로 옵션을 넣어줬는데
폰 연결해서 테스트 해보면 가로모드를 생각해서 좌표를 잡아둔 이미지들이 전부 세로모드의 좌표로 띄워지네요;;
어플을 가로로 고정시키는코드는 위 xml에서 넣어주면 되는거 아니었나요??
아무리해도 폰에서 가로가 안되네요 ㅠ.ㅠ
답변 부탁드립니다~




android:screenOrientation=" 여기"에 portrait 이나 landscape로 설정을 해주시면 될거에요~