Table 当文本长度很长时忽略权重?

Table weight ignored when text length is long?

我有以下 xml 布局 - 如果 editText_model 文本相当短,则 table 按权重值分成 50/50。

然而,文本越长,它就越会挤压“描述”一词。为什么它忽略了 50/50 拆分?

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:orientation="vertical">

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="100">

        <TableRow>

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="50"
                android:paddingLeft="5dp"
                android:text="Select"
                android:textSize="15sp"/>

            <RadioGroup
                android:id="@+id/radioGroupAdd"
                android:layout_weight="50"
                android:orientation="horizontal">

                <RadioButton
                    android:id="@+id/RadioModel"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Test1"/>

                <RadioButton
                    android:id="@+id/RadioPaint"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:text="Test2"/>

            </RadioGroup>
        </TableRow>

    </TableLayout>

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="100">

        <TableRow>
            <TextView
                android:id="@+id/tV_model"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="50"
                android:gravity="center|left"
                android:paddingLeft="5dp"
                android:text="Description"
                android:textSize="15sp"/>

            <EditText
                android:id="@+id/editText_model"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="50"
                android:hint="Enter Description"
                android:inputType="text|textMultiLine|textNoSuggestions"
                android:minLines="3"
                android:text="testing long line of text 1234567890 123 456 77878 89 9 9d"
                android:textSize="15sp"/>


        </TableRow>
    </TableLayout>
</LinearLayout>

对于 layout_width,尝试放置 0dp。