Before my app was with android:targetSdkVersion="14" but i decide to make it a little more modern and update it to android:targetSdkVersion="22". However now i have a little problem, the color of the top status bar during the launch phase is now gray (like on the picture) and i would prefer to have it black (like it's was before).
Any idea what i need to do to have my status bar black again during the launch phase ?
NOTE
I would like to change the color of the statusbar via the styles.xml. actually i try to add
<item name="android:colorPrimaryDark">@android:color/black</item>
or
<item name="android:statusBarColor">@android:color/black</item>
didn't help! this question is not a duplicate of other because i can set the StatusBar color to be black without any problem after the app is launched or fully loaded. I need to setup the black background for the statusbar during the launching phase, i mean when user click on the icon of the app their is something like a launch screen (with a define to be black via <item name="android:windowBackground">@android:color/black</item>
) but the statusbar color of this launch sreen is gray (only if android:targetSdkVersion="22")