Search code examples
androidandroid-layoutandroid-tabactivity

How to fix Tab Activity action bar up color in Android?


Above action bar, white color is displaying. I want to fix that one. Please check attached image file.

Thanks in Advance Image Here


Solution

  • Try this:

     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            Window window = getWindow();
            window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
            window.setStatusBarColor(Color.parseColor("#39bf96"));
        }