I am trying to clear the View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR flag so that the status bar icons become default white for my dark status bar background.
The issue is the following code is working perfectly if I naviagte to activity but it does not work if I use the same code for fragments.
For Clearing Flags I am using this:
getActivity().getWindow().clearFlags(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
getActivity().getWindow().setStatusBarColor(getResources().getColor(R.color.my_calender_appbar_background));
For Setting Flag:getActivity().getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); getActivity().getWindow().setStatusBarColor(getResources().getColor(R.color.white));