不知道你的具体的需求情况, 但个人感觉布局合理的话实现不难吧..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/t1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#aaf23000"
android:layout_weight="1"/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#3aa000"
android:layout_weight="1"/>
</LinearLayout>
<ImageView
android:layout_width="200dp"
android:background="#ff0"
android:layout_height="100dp"
android:layout_centerInParent="true"/>
</RelativeLayout>