I've been searching all day for an answer and couldn't find anything, other people were having similar issues and their solutions didn't work for me. I have an ImageView and in the design tab the image shows up perfectly fine. I've tried putting it in several folders, drawable, mipmap (hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi) all to no avail, the picture is sized properly and I tried using several different scaleTypes, heres the XML in the activity_main
<ImageView
android:layout_width="322dp"
android:layout_height="191dp"
app:srcCompat="@mipmap/bdaydraw"
android:id="@+id/imageView"
android:adjustViewBounds="true"
android:scaleType="fitXY"
app:layout_anchorGravity="center_vertical|left"
android:layout_gravity="center_vertical|center_horizontal" />
I tried adding stuff about ImageView in the actual Java code but I always had some minor error I couldn't manage to fix. Any help is extremely appreciated