woong's
android 화면 고정 하기 본문
android 화면 고정 하기
방법
1. Manifast.xml
1 2 3 4 5 | <activity android:name=".SettingActivity" android:label="@string/title_activity_setting" android:screenOrientation="portrait" > </activity> | cs |
screenOrientation 속성을 통해서 가로/세로 고정 시킬 수 있습니다.
가로 : landscape
세로 : portrait
2. Java Code
1 2 3 | setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);// 세로고정 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);// 가로고정 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);// 고정 해제 | cs |
위는 자바코드를 통해서 고정 작업을 할 수 있습니다.
보통은 Manifast.xml 파일에서 고정 하면 되지만 , 간혹 상태에 따라 화면 고정 상태가 바뀌는 경우가 있습니다.
이와 같은 경우는 자바코드를 통해서 고정 작업을 하면 될 것 같습니다.
'Develop > Android' 카테고리의 다른 글
Android Support Design CollapsingToolbarLayout 사용하기[3] (3) | 2016.02.14 |
---|---|
Android Support Design Snackbar 사용하기[2] (0) | 2016.02.14 |
android TextInputLayout & AppCompatEditText 사용 하기 (0) | 2016.02.14 |
Android 머티리얼 + 최신 UI 모음 (0) | 2016.02.14 |
android tab IndicatorColor 색상 변경하기 (0) | 2016.02.14 |
Comments