首先,您需要添加android:stretchColumns="*"
到 TableLayout。
每个 TableRow 都需要具有android:layout_weight="1"
才能平等地伸展。
TableRow 中的每个按钮都需要有 android:layout_width="0dp"
.
这是一些例子
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TableRow
android:layout_height="wrap_content"
android:layout_weight="1">
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:onClick="onButtonClick"
android:text="@string/button1" />
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:onClick="onButtonClick"
android:text="@string/button2" />
</TableRow>
<TableRow
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:onClick="onButtonClick"
android:text="@string/button3" />
<Button
android:id="@+id/button4"
android:layout_width="0dp"
android:layout_height="match_parent"
android:onClick="onButtonClick"
android:text="@string/button4" />
</TableRow>
</TableLayout>