One of my activities has suddenly changed its color in the statusbar. By default it's black, but now it's transparent, why?
I've marked around the bar with a circle. By default this is black
My XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scaleType="centerInside"
    android:id="@+id/do2get"
    android:src="@drawable/loading"
    android:layout_alignParentTop="true"
    android:layout_alignParentStart="true"
    android:layout_marginLeft="30dp" />
<ProgressBar
    style="?android:attr/progressBarStyleLarge"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:indeterminateTint="#00796b"
    android:id="@+id/progressBar"
    android:layout_below="@+id/do2get"
    android:layout_centerHorizontal="true"
    android:indeterminateTintMode="src_in"/>
</RelativeLayout>
 
     
    