我已经为一个 1 tablerow 和 layout_weight 定义了 weightsum。这就是我正在做的
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="1" >
<TextView
android:id="@+id/add"
android:layout_width="fill_parent"
android:layout_height="45dp"
android:layout_weight="0.2"
android:text="@string/restaurant_add"
android:textStyle="bold" />
<TextView
android:id="@+id/Restaurant_add"
android:layout_width="fill_parent"
android:layout_height="45dp"
android:layout_weight="0.8"
android:clickable="true" />
</TableRow>
我正在动态地将数据填充到 Restaurant_add.. 但是当我将数据填充到 Restauant_add 时,即使我将 layout_weight 设置为 0.8,它也会覆盖 android:text="@string/restaurant_add" 中存在的数据。
我在做什么错?
谢谢:)