Pretty simple. Try something like this (I left other things like height and width to save space):
<RelativeLayout> <ImageView android:id="@+id/A" android:layout_alignParentLeft="true" /> <ImageView android:id="@+id/F" android:layout_alignParentRight="true" /> <LinearLayout android:id="@+id/container" android:layout_toRightOf="@+id/A" android:layout_toLeftOf="@+id/F" android:orientation="horizontal" android:weightSum="3" > <TextView android:id="@+id/B" android:layout_weight="1" /> <TextView android:id="@+id/C" android:layout_weight="1" /> <TextView android:id="@+id/D" android:layout_weight="1" /> </LinearLayout> <TextView android:id="@+id/E" android:layout_toRightOf="@+id/A" android:layout_toLeftOf="@+id/F" android:layout_below="@+id/container" /> </RelativeLayout>
source share