我正在尝试在 Android 中使用 XML 将表格行居中,但我遇到了一个问题,即对于我的两行仅包含两个按钮的行来说,它向右偏了一点点。这是我的代码,我有它的外观截图
<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center">
        <ImageView
            android:id="@+id/hiragana_multiple_choice_main_image"
            android:gravity="center" 
            android:layout_width="fill_parent"
            android:layout_height="match_parent"/>
    </TableRow>
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:padding="30dp">
        <Button
            android:id="@+id/hiragana_multiple_choice_button_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="1" />
        <Button
            android:id="@+id/hiragana_multiple_choice_button_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="1" />
    </TableRow>
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="30dp"
        android:gravity="center">
        <Button
            android:id="@+id/hiragana_multiple_choice_button_3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_weight="1" />
        <Button
            android:id="@+id/hiragana_multiple_choice_button_4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_weight="1" />
    </TableRow>
</TableLayout>
http://www.ptrprograms.com/multiple_choice_offset.png
谢谢!