- 결과 -
- 코드 -
다음과 같이 SYSTEM_UI_FLAG_LOW_PROFILE 플래그를 사용하여 상태 표시줄과 알림바를 투명하게(흐리게) 만들 수 있다.
View decorView = Two.this.getWindow().getDecorView();
// View decorView = getActivity().getWindow().getDecorView(); // 가져오는 메소드 있으면 이렇게 사용해
int uiOptions = View.SYSTEM_UI_FLAG_LOW_PROFILE;
decorView.setSystemUiVisibility(uiOptions);
- 참고 -
setSystemUiVisibility()로 설정된 플래그를 프로그래밍 방식으로 지우는 방법
decorView.setSystemUiVisibility(0);
'■ Android > Tip' 카테고리의 다른 글
[Android] 탐색 메뉴(맨밑 버튼) - 숨기기 (0) | 2020.01.22 |
---|---|
[Android] 상태 표시줄 - 숨기기 (0) | 2020.01.21 |
[Android] 다이얼로그(AlertDialog) 사용법 - 외부 클릭 시, 창 사라짐 막는 방법 (0) | 2020.01.20 |
[Android] 다이얼로그(AlertDialog) 사용법 - 아애 액티비티를 다이얼로그 띄우는 방법 (0) | 2020.01.20 |
[Android] Toolbar(=?액션바)(=?메뉴) - 사용법(5.메뉴 이름 바꾸기) (0) | 2020.01.20 |