<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:columnCount="3"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="第一个"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="第二个"
android:layout_row="1"
android:layout_column="1"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="0"
android:text="第三个"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="66dp"
android:text="第四个" />
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="第五个" />
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="第六个" />
</GridLayout>