How can i change bgcolor of title bar. By default white color is assigned to it, due to which battery usage,time & notification icons are not visible.
Check this image link for problem description :
I have set an image to relative layout :
android:background="@drawable/img_bg"
And applied NoActionBar theme to the activity
<activity
android:name=".activity.LoginActivity"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>