How we can change app icon in android studio
How we can change app icon in androidx
I tell about how we can change app icon in android studio ...
So let's start...
Step-2
we know that app icon put in folder in mipmap
so then we go on mipmap icon
1.Click on app
2.Click on res folder
mipmap folder will appear
Step-3
1.Right click on mipmap folder
2.click on new
3.click on Image asset
When you click on Image Asset then a new dialog box will open
like this.....
Step-4
So for icon we will have to specify some properties
1. Icon type
2.Name of icon
3.Then choose Foreground layer
1.set layer name
2.if you want set image on icon then choose Asset type
image
1.if you want android studion icon then choose Asset type
clip art
2.if you want write text on icon then choose Asset type
text
for image you will have to specify path of image(it must be in png
format or jpg)
4.Then choose background layer
1.set layer name
2.if you want set image on icon then choose Asset type
image
1.if you want color as background then choose Asset type
color
for image you will have to specify path of image(it must be in png or jpg)
5.For give shape to icon we will have to click on Options
1. you can set type of shape form here
So let's start and set image on app icon and shape in circle
Note: for zoom image for icon or resize image then you will have to Resize seekbar
1.we provide all properties of foreground layer which discusses above
2.we will have to select circle as shape in options
3.Then click on next
4.Simple click on finish
Final step:
Go on manifest folder and open AndroidManifest.xml
here android:icon and android:roundIcon is used for set icon
for access icon from mipmap
use this @mipmap/icon_name
so change here
android:icon="@mipmap/my_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
same like this and run your app......
Output
I hove all of you will understand how we set app icon in android studio....
Thanks for reading my blogger.....
I tell about how we can change app icon in android studio ...
So let's start...
Step-2
we know that app icon put in folder in mipmap
so then we go on mipmap icon
1.Click on app
2.Click on res folder
mipmap folder will appear
Step-3
1.Right click on mipmap folder
2.click on new
3.click on Image asset
When you click on Image Asset then a new dialog box will open
like this.....
Step-4
So for icon we will have to specify some properties
1. Icon type
2.Name of icon
3.Then choose Foreground layer
1.set layer name
2.if you want set image on icon then choose Asset type
image
1.if you want android studion icon then choose Asset type
clip art
2.if you want write text on icon then choose Asset type
text
for image you will have to specify path of image(it must be in png
format or jpg)
4.Then choose background layer
1.set layer name
2.if you want set image on icon then choose Asset type
image
1.if you want color as background then choose Asset type
color
for image you will have to specify path of image(it must be in png or jpg)
5.For give shape to icon we will have to click on Options
1. you can set type of shape form here
So let's start and set image on app icon and shape in circle
Note: for zoom image for icon or resize image then you will have to Resize seekbar
1.we provide all properties of foreground layer which discusses above
2.we will have to select circle as shape in options
3.Then click on next
4.Simple click on finish
Final step:
Go on manifest folder and open AndroidManifest.xml
here android:icon and android:roundIcon is used for set icon
for access icon from mipmap
use this @mipmap/icon_name
so change here
android:icon="@mipmap/my_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
same like this and run your app......
Output
I hove all of you will understand how we set app icon in android studio....
Thanks for reading my blogger.....
Post a Comment