无法在 GridLayout 中显示两个按钮,其中一个按钮的宽度是另一个按钮宽度的两倍

Cannot display two buttons with one button as twice the width of other in GridLayout

我需要使用GridLayout来显示两个按钮。第一个和第二个宽度是其他按钮的两倍。我希望 NEXT 按钮的宽度是 BACK 按钮的两倍,我需要一个 GridLayout.

我的源码如下:

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    style="@style/Calculator.Grid"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:columnCount="3"
    app:rowCount="1">

    <Button
        android:id="@+id/button_back"
        android:layout_column="0"
        android:layout_columnSpan="1"
        android:layout_columnWeight="1"
        android:layout_gravity="left|top"
        android:background="@drawable/bg_back_button"
        android:text="@string/back"
        android:textColor="?attr/colorTextSecondary"
        android:textSize="16sp" />

    <Button
        android:id="@+id/button_next"
        android:layout_column="1"
        android:layout_columnSpan="2"
        android:layout_columnWeight="2"
        android:layout_gravity="fill"
        android:background="@drawable/bg_next_button"
        android:text="@string/next"
        android:textColor="?attr/colorTextPrimary"
        android:textSize="16sp" />
</GridLayout>

所需显示(NEXT 按钮的宽度应为 BACK 按钮的两倍):

但结果是(问题):

如果您对线性布局作为内部容器没有任何问题,请使用此

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
style="@style/Calculator.Grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="3"
app:rowCount="1">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="3">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/button_back"
        android:layout_column="0"
        android:layout_columnSpan="1"
        android:layout_columnWeight="1"
        android:layout_gravity="left|top"
        android:background="@drawable/bg_back_button"
        android:text="@string/back"
        android:textColor="?attr/colorTextSecondary"
        android:textSize="16sp"
        android:layout_weight="2"/>


    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/button_next"
        android:layout_column="1"
        android:layout_columnSpan="2"
        android:layout_columnWeight="2"
        android:layout_gravity="fill"
        android:background="@drawable/bg_next_button"
        android:text="@string/next"
        android:textColor="?attr/colorTextPrimary"
        android:textSize="16sp"
        android:layout_weight="1"/>

</LinearLayout>




</GridLayout>

这是我兄弟的工作,试试这个

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:columnCount="3"
android:rowCount="3">

<Button
    android:id="@+id/textViewNW"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_columnSpan="1"
    android:layout_columnWeight="1"
    android:layout_gravity="center|fill"
    android:layout_rowSpan="1"
    android:layout_rowWeight="1"
    android:background="#fe4141"
    android:text="@string/app_name"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<Button
    android:id="@+id/textViewNE"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_columnSpan="2"
    android:layout_columnWeight="2"
    android:layout_gravity="center|fill"
    android:layout_rowSpan="2"
    android:layout_rowWeight="2"
    android:background="#51f328"
    android:text="@string/app_name"
    android:textAppearance="?android:attr/textAppearanceLarge" />
</GridLayout>
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    style="@style/Calculator.Grid"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:columnCount="3"
    app:rowCount="1">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="3">

        <Button
            android:id="@+id/button_back"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_column="0"
            android:layout_columnSpan="1"
            android:layout_columnWeight="1"
            android:layout_gravity="left|top"
            android:layout_weight="2"
            android:background="@drawable/bg_back_button"
            android:text="@string/back"
            android:textColor="?attr/colorTextSecondary"
            android:textSize="16sp" />

        <Button
            android:id="@+id/button_next"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_column="1"
            android:layout_columnSpan="2"
            android:layout_columnWeight="2"
            android:layout_gravity="fill"
            android:layout_weight="1"
            android:background="@drawable/bg_next_button"
            android:text="@string/next"
            android:textColor="?attr/colorTextPrimary"
            android:textSize="16sp" />
    </LinearLayout>

</GridLayout>