Knaus Irina
Knaus Irina

Reputation: 799

How change color of Background Status Bar Of Android

How change color of Background Status Bar of Android? I try change color of background of Status Bar of Android for build Unity3d

Upvotes: 0

Views: 1843

Answers (1)

Joaquin Iurchuk
Joaquin Iurchuk

Reputation: 5617

In order to change Status Bar Color you should check that the user has Android APIv21 or higher and then

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP;) {
    getWindow().setStatusBarColor(Color.parseColor("#FAFAFA")); 
}

Upvotes: 2

Related Questions