How do I set the icon for the Android app?

Asked 2 years ago, Updated 2 years ago, 23 views

How do I set the icon for the Android app?

android

2022-09-21 21:16

1 Answers

If you want to change the icon of the app depending on the size of the device, go to the 'res/drawable' in the project folder and

Make icons tailored to each star size

Go to the Android manifest file

<application android:icon="@drawable/icon_name" android:label="@string/app_name" >
.... 
</application> 

Please put the icon name in android:icon= as shown.


2022-09-21 21:16

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.