반응형
* 어플 아이콘 변경 방법
안드로이드를 설치 하고 프로젝트를 작성 했다면
C:\Users\Administrator\AndroidStudioProjects\VisualProgramming\app\src\main\res
위의 경로에 보통 만들어 짐. 위 폴더에 들어 가게 되면
위와 같이 나오게 됨. 여기서 hdpi mdpi xhdpi ~ 가 있는데 이건 각 이미지 크기를 말하며 이미지를 거기에 맞게 픽셀을 맞춰 넣게 되면 됩니다.
mdpi
48px*48px
hdpi
72px*72px
xhdpi
96px*96px
xxhdpi
144px*144px
xxxhdpi
192px*192px
이미지를 다 맞게 넣었다면 마지막으로 아래와 같이 변경 해 줍니다.
* AndroidMenifest.xml - 아이콘 변경
<application
android:allowBackup="true"
android:icon="@mipmap/mainicon1" <- 아이콘 변경 부분
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MediumActivity"></activity>
</application
반응형
'Android Programming' 카테고리의 다른 글
[Android] [Control] Button 컨트롤 (0) | 2019.10.15 |
---|---|
[Android] 안드로이드 스튜디오 Setting (0) | 2019.10.10 |
[Android] 안드로이드 스튜디오 설치 (0) | 2019.10.08 |
[Android] delete_failed_internal_error error while installing apks~~ 에러 시 (0) | 2019.10.07 |
[Android] 에뮬레이터 한글 입력 방법 (0) | 2019.10.06 |