Search code examples
androidstatusbar

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


Solution

  • 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")); 
    }