250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- textview
- intent
- activity
- Button
- tabbar
- data
- Compose
- binding
- 테스트
- viewmodel
- scroll
- ScrollView
- appbar
- Flutter
- android
- Kotlin
- Navigation
- 계측
- textfield
- TEST
- Dialog
- LifeCycle
- 안드로이드
- livedata
- CustomScrollView
- Coroutines
- 앱바
- DART
- 앱
- drift
Archives
- Today
- Total
Study Record
[안드로이드] 앱 이름과 아이콘 바꾸기 본문
728x90
😶 앱 이름
앱 이름은 AndroidManifest.xml 파일의 <application> 태그의 android:label 속성으로 설정할 수 있다. 보통 @String/app_name 을 참조하게 되어있으므로 res/values/strings.xml 파일의 app_name 부분의 내용을 변경하면 된다.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Basic_text"
tools:targetApi="31">
</application>
</manifest>
😶 앱 아이콘
앱 아이콘을 바꾸려면 프로젝트의 res 폴더에 오른쪽 마우스를 클릭하여 New > Image Asset 을 클릭하여 Asset Type 에서 준비된 이미지가 있다면 image 옵션을 선택하여 이미지 경로를 설정하면 된다. 그렇지 않을 경우 Clip art 에서 간단한 아이콘을 찾을 수도 있다.
Next 버튼을 눌러 Finish 를 마치면 res/mipmap 파일에 저장한 앱 아이콘을 확인할 수 있다. 만약 앱 아이콘 이름을 ic_launcher 로 정하지 않았다면 AndroidManifest.xml 파일의 <application> 태그에 android:icon 속성과 roundIcon 속성의 경로의 이름을 새로 정한 앱 아이콘 이름의 경로를 넣어준다.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Basic_text"
tools:targetApi="31">
</application>
</manifest>
728x90
'안드로이드' 카테고리의 다른 글
[안드로이드] LinearLayout 살펴보기 (0) | 2023.06.15 |
---|---|
[안드로이드] style 지정하기 (TextView) (0) | 2023.06.15 |
[안드로이드] ImageView 사용하기, coil 라이브러리(웹 URL로 이미지 로딩) (0) | 2023.06.14 |
[안드로이드] API 수준 이해와 호환성 탐색 (0) | 2023.06.14 |
[안드로이드] View 입력 이벤트 개요 (click, long click, focus, key) (0) | 2023.06.14 |