Skip to content

Change Nav,Title bar color

Latest
Compare
Choose a tag to compare
@raselkhan9560 raselkhan9560 released this 15 Sep 03:22
· 2 commits to master since this release
a505299

You can change bar colors

add repositories on your root project gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

add dependencies on you app gradle
dependencies {
implementation 'com.github.raselkhan9560:screen_setup_library:-project_version'
}

To change status and navigation bar color use ChangeAll(this,resrource.getColor(R.color.white))

To change only status bar color use ChangeStatusBar(this,resrource.getColor(R.color.white))

To change only navigation bar color use ChangeNavigationBarColor(this,resrource.getColor(R.color.white))