Only fullscreen opaque activities can request orientation 안드로이드 오레오 버그. manifest.xml 에서 1. android:screenOrientation="portrait" 제거 2. 추가if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.O) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);} 카테고리 없음 2018.10.01
[안드로이드] 액티비티 가로 세로 모드 고정 매니페스트에서 각 액티비티 마다 해줘도 된다. 세로모드android:screenOrientation="portrait" 가로모드android:screenOrientation="landscape" [안드로이드 공부]/액티비티 2015.10.16