안드로이드에서 가로모드 혹은 세로모드로 액티비티를 고정해야할일이 있습니다. 다음과 같은 방법을 사용합니다. 1. AndroidManifest.xml에 Activity Tag에 고정 activity에 screenOrientation 속성에 값을 넣어서 모드를 처리. android:screenOrientation="landscape" 다음과 같은 속성값을 지정할 수 있습니다. 안드로이드 developers의 가이드를 참고하면 됩니다. developer.android.com/guide/topics/manifest/activity-element android:screenOrientation=["unspecified" | "behind" | "landscape" | "portrait" | "reverseLands..