один способ может сделать этот тип макета
<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:gravity="center_horizontal|center_vertical">
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageView android:layout_width="150dp" android:layout_height="150dp"
android:layout_weight="1" android:background="@drawable/bg_img"
android:layout_margin="5dp"/>
<ImageView android:layout_width="150dp" android:layout_height="150dp"
android:layout_weight="1" android:background="@drawable/bg_img"
android:layout_margin="5dp"/>
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageView android:layout_width="150dp" android:layout_height="150dp"
android:layout_weight="1" android:background="@drawable/bg_img"
android:layout_margin="5dp"/>
<ImageView android:layout_width="150dp" android:layout_height="150dp"
android:layout_weight="1" android:background="@drawable/bg_img"
android:layout_margin="5dp"/>
</LinearLayout>
</LinearLayout>
я использовал загрузку этого изображения отсюда, изображение слишком большое, но это был тест, только вы можете использовать ваши изображения, просто замените фоновый src в imageview вкаждый или согласно вашему требованию.
и вы получите результат, подобный этому