I want to do something like this:

For some reason the ImageView is not shown when I change my targetSdk to 14. Anyone know what is going on?
RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/venueinformation_header_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:adjustViewBounds="true"
android:contentDescription="Venue Information Header"
android:src="@drawable/venueinformation_header_image" />
<TextView
android:id="@+id/venueinformation_header_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:gravity="right"
android:text="@string/venuinformation_header_label"
android:textSize="55sp" />
</RelativeLayout>
Thanks
I figured it out. Something was wrong with the image itself. I think it was just too large. I made it smaller and it worked.