Ich habe ein wirklich einfaches Bild in einem RelativeLayout
und aus irgendeinem Grund bekomme ich oben und unten zusätzlichen Abstand, den ich nicht entfernen kann. Wie kann ich das klären?
So sieht es aus:
Hier ist der Code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/slice11pp" />
</RelativeLayout>