Android

android status bar 숨기기

Machine_웅 2020. 11. 30. 22:17
728x90
반응형
    if (Build.VERSION.SDK_INT < 16) {
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
        }else{
            View decorView = getWindow().getDecorView();
            // Hide the status bar.
            int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
            decorView.setSystemUiVisibility(uiOptions);
            // Remember that you should never show the action bar if the
            // status bar is hidden, so hide that too if necessary.
            ActionBar actionBar = getActionBar();
            actionBar.hide();
        }

 

<item name="android:windowFullscreen">true</item>

 

developer.android.com/training/system-ui/status?hl=ko

 

728x90
반응형

'Android' 카테고리의 다른 글

Android SNS 공유하기 - 스크랩  (0) 2021.01.12
(시간 동기화 관련)날자 형식 -> 밀리세컨드 로 변환  (0) 2020.12.08
해시키 추출  (0) 2020.11.11
SharedPreference 사용  (0) 2020.10.14
정규식 비밀번호  (0) 2020.10.07