StatusBar / NavBar
기본 ActionBar 없애기
Theme 이란?
- 앱의 UI style 을 정의하는 것
- 앱전체, Activity, 컴포넌트 각각에 따로 적용시킬수도 있다
- values resource 폴더 하위에 정의해야함
- themes.xml 로 할수도 있고
- styles.xml 로 할수도 있음!!
Theme 적용
→ 앱 전체에 적용
- manifest 파일 application 에 theme 속성에 style 이름 적용
android:theme="@style/Theme.FruitCardGame"
→ 특정 Activity에 적용
- manifest 파일 activity 에 theme 속성에 style 이름 적용
android:theme="@style/Theme.FruitCardGame"