-
Notifications
You must be signed in to change notification settings - Fork 0
타이틀_바&상태_바
(T.W. Nam) edited this page Mar 8, 2021
·
1 revision
상태 바와 액션 바를 지우는 과정에 삭제 되지 않는 현상이 발생하였다.
안드로이드 프로젝트 생성 시 기본으로 ActionBar 또는 TitleBar가 자동적으로 생성된다.
프로젝트에 맞게 액션 바, 타이틀 바, 상태 바를 숨겨야 했다.
- 타이틀 바 숨기기
-
상속에 따른 숨기기
android.app.Activity로 상속을 받는다.
-
AndroidManifast.xml에서의 숨기기
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
-
동적 숨기기
supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
-