앱을 풀스크린으로 실행시키거나, 상태바(Statusbar)가 UX와 어울리지 않을 때 제거하고 싶을 때가 있습니다. Statusbar를 숨기는 방법에 대해서 정리하였습니다. (안드로이드 버전에 따라서 코드가 약간 다릅니다.)
Hide statusbar & Full screen
Android activity를 Full screen 설정 및 Statusbar를 숨기는 방법은 크게 두가지가 있습니다. 첫번째는 AndroidManifest.xml에 Activity의 theme를 설정하거나, 두번째는 Java에서 Code로 설정하는 방법입니다.
Activity의 Theme 변경
미리 정의된 속성을 사용한다면, Theme 속성을 Fullscreen으로 설정하면 됩니다.
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar.Fullscreen" >
....
</activity>
내가 정의한 Theme를 사용한다면, windowFullscreen를 나의 Theme에 정의해줘야 합니다.
<item name="android:windowFullscreen">true</item>
Java code
자바에서 코드로 설정하려면 아래 코드를 사용하시면 됩니다. 주의할 점은 Android OS 버전 별로 설정하는 flag가 다릅니다.
private void setFullscreen(boolean fullscreen) {
ActionBar actionBar = getSupportActionBar();
if (fullscreen) {
if (actionBar != null) actionBar.hide();
int flag = View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_FULLSCREEN;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
flag |= View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
flag |= View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
flag |= View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
}
getWindow().getDecorView().setSystemUiVisibility(flag);
}
else {
if (actionBar != null) actionBar.show();
int flag = View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
flag |= View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
}
getWindow().getDecorView().setSystemUiVisibility(flag);
}
}
만약 setSystemUiVisibility()
로 설정 후 UI가 변하지 않는다면 requestLayout()
로 refresh하면 됩니다.
if(isFullScreen) {
isFullScreen = false;
setFullscreen(false);
} else {
isFullScreen = true;
setFullscreen(true);
}
getWindow().getDecorView().requestLayout();
Loading script...
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력