Poniżej mój layout do splashScreena i problem jest taki, że moge logo nie jest wyświetlane-pokazuje się tylko biały ekran.Jeśli chodzi o moje drawable to jest to png i rozmiar też się mieści na ekranie.

<?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"
    android:background="@color/white">

    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        style="?android:attr/progressBarStyle"
        android:id="@+id/splash_progress_bar"/>

    <ImageView
        android:src="@drawable/default_logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="@dimen/login_padding"
        android:id="@+id/splash_logo"
        android:layout_centerInParent="true"/>


</RelativeLayout> 

Za wszelkie inne sugestie będe wdzięczny!