Tuesday, October 8, 2019

Android Change App Icon

Generally, while implementing an app in android studio the default app icons will be available in app\res\mipmap folder path like as shown below.

Android App Default App Icon Path in Android Studio

To change the default android app icon, we need to add our image in mipmap folder and need to change the value of android:icon attribute in android manifest file (AndroidManifest.xml) to point to your image like as shown below.

Android Change App Icon in Manifest File

This is how we can change the android app icon in android studio based on our requirements.

No comments:

Post a Comment

How to DROP SEQUENCE in Oracle?

  Oracle  DROP SEQUENCE   overview The  DROP SEQUENCE  the statement allows you to remove a sequence from the database. Here is the basic sy...