Я пытаюсь вставить изображение в RelaviweLayout, однако оно уменьшается до очень маленьких размеров, что его вообще не видно. Как это исправить? Вот код xml.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/music_player_album_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@drawable/imagine_dragons-night_visions_album" />
</RelativeLayout>