Additional Changes

how to change Additional things?

Change App colors

App > res > values > colors.xml

Change App icon

Place your app icon inside mipmap folder -> app\src\main\res\mipmap\

Icon of the name should be "ic_launcher.png"

Change Splash Screen icon

Place your icon inside drawable folder -> app\src\main\res\drawable\splash.png

Icon of the name should be "splash.png"

Change Splash Screen background color

Please open splash_screen_background.xml from Drawable Folder Path -> app\src\main\res\drawable\splash_screen_background.xml

Replace your color with "colorPrimary" in below line

<item android:drawable="@color/colorPrimary"/>

Change Navigation Drawer Background Color

Please navigate to below file and replace your color with primaryColor in that file Inside drawable folder -> app\src\main\res\drawable\drawer_bg.xml

Change Toolbar Shape Color

Please navigate to below file and place your color in android:fillcolor in that file

android:fillColor="#[Place your hexa color code here]" Inside drawable folder -> app\src\main\res\drawable\header_bg.xml

Change background color of button

Please navigate to this file inside Drawable folder -> app\src\main\res\drawable\btn_lock.xml

And replace your color code in below fines in that file

android:startColor="#[Place your hexa color code here]"
android:centerColor="#[Place your hexa color code here]"
android:endColor="#[Place your hexa color code here]"

Last updated