How to import Image Asset and use it as display icon of your Android App?

Опубликовано: 24 Июль 2026
на канале: Programmer World
13,996
67

In this video it shows the steps to import an image as an asset in your Android Studio environment of your App. Further it shows how one can use the imported image as the display icon of the App. It modifies both - round icon and normal icon - options in the manifest.xml file to ensure that the icon changes for all the devices/ phones (which has round icon display and normal square icon display).

I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: [email protected]

Complete source code and other details/ steps of this video are posted in the below link:
https://programmerworld.co/android/ho...



Part of Manifest file XML code is below:


android:allowBackup="true"
android:icon="@mipmap/programmer_world_icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/programmer_world_icon_round"
android:supportsRtl="true"
android:theme="@style/Theme.DisplayIconUsingImageAsset"