答案 0 :(得分:2)
我建议您使用TableLayout
,否则GridView
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
android:shrinkColumns="0"
>
<TableRow>
<Button android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button android:id="@+id/date"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
..................
</TableRow>
</TableLayout>