How do i change the icon of my new Android app in Android studio? -
this question has answer here:
i made app using android studio. created signed apk , copied phone. installed apk in phone, icon of app default android icon. how can change , make new one. , how change name of app?
for setting app icon goto androidmanifest.xml under <application
tag there attribute android:icon
can set desired icon.for example: android:icon="@drawable/sample_image"
sample_image name of image set placed under /res/drawable/ folder.
for setting app name goto strings.xml , for:
<string name="app_name">
, change value of string desired.
Comments
Post a Comment