I have a very simple image in RelativeLayout and for some reason I get an extra spacing above and below that I cannot remove. How can I clean this?
Here's what it looks like:

Here is the 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>
android imageview
Mobile Bloke Feb 28 '13 at 18:21 2013-02-28 18:21
source share