반응형
앱 아이콘 변경하기
- res 폴더에서 오른쪽 클릭 - New - Image Asset
- Foreground Layer
- Source Asset
- Image - Path : 아이콘의 이미지를 지정
- Source Asset
- Background Layer
- Source Asset
- Asset Type - Color : 아이콘의 배경 색을 설정
- Source Asset
- 아이콘 설정 후 Next
- Finish
- 아이콘 확인 경로
- res - minmap
- 에뮬레이터에서 아이콘 변경 확인
앱 이름 변경하기
- 앱 이름 변경 경로
- res - values - string.xml
- <string name="app_name"> </string> 사이에 앱 이름 입력
- 에뮬레이터에서 앱 이름 변경 확인
액션바 없애기
- res - values - themes - themes.xml / themes.xml(night)
- 두 개의 파일을 모두 변경
- 두번째 줄의 <style name="Theme.~ 뒷부분의 DarkActionBar를 NoActionBar로 변경
앱의 컬러 바꾸기
- res - themes - themes.xml
- colorPrimary : 앱의 액션바나 버튼 등 전체적인 기본 색상 설정
- colorPrimaryVariant : 상태 표시줄을 나타내는 색상 설정
- colorOnPrimary : 앱에서 보여질 배경 색상 설정
반응형