1. Activity 의 onCreate 에 추가 하는 방법
// 상태바 숨김 (Fullscreen)
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
// ActionBar 숨김
ActionBar actionBar = getActionBar();
actionBar.hide();
자세한 설명은 아래에서 참조.
https://developer.android.com/training/system-ui/status.html
2. AndroidMainfest.xml 에서 설정 하는 방법 ( 액션바 숨기기 )
android:theme="@style/Theme.AppCompat.NoActionBar">
'Android' 카테고리의 다른 글
[Android] 안드로이드 API Level 2023.05 (0) | 2023.05.19 |
---|---|
[Android] Execution failed for task ':app:clean'. 오류 (0) | 2018.04.03 |
[Android] 안드로이드 버전 API LEVEL (0) | 2018.03.27 |
[Android] 안드로이드 아두이노 블루투스 연결 HC-06 (0) | 2017.03.21 |
[Android] invalidate() 화면 초기화 Canvas 화면 초기화 (0) | 2017.03.15 |