Добрый день, пытаюсь добавить картинки на стартовый экран игры, но их не видно. так же добавил кнопки(с ними всё в порядке) Что я упускаю?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff" >
<ImageView
android:id="@+id/imageView2"
android:layout_width="88dp"
android:layout_height="55dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginStart="221dp"
android:layout_marginTop="70dp"
android:layout_marginEnd="102dp"
app:srcCompat="@drawable/cloud" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="213dp"
android:layout_marginEnd="165dp"
android:background="#fff"
android:fontFamily="UndertaleFont"
android:text="Start"
android:textColor="#48565c"
android:textSize="30dp" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button"
android:layout_alignParentEnd="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="60dp"
android:layout_marginEnd="163dp"
android:background="#fff"
android:fontFamily="UndertaleFont"
android:text="Score"
android:textColor="#48565c"
android:textSize="30dp" />
</RelativeLayout>