我想让应用程序可以显示来自RecyclerView的数据,但它显示了不同的列大小。如何为布局设置tablelayout相等的列大小,因为我不知道这个?
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
>
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="9"
>
<TableRow
android:layout_height="wrap_content"
android:layout_width="0dp"
android:weightSum="9"
android:gravity="left"
android:background="@drawable/borderc">
<TextView
android:id="@+id/namabar"
android:layout_weight="2.5"
android:text="Nama Barang"
android:layout_height="wrap_content"
android:maxLength="15"
android:gravity="left"
android:layout_width="match_parent"
android:background="@drawable/borderc"
/>
<TextView
android:layout_weight="2"
android:id="@+id/jumlahbar"
android:text="Jumlah"
android:layout_height="wrap_content"
android:background="@drawable/borderc"
android:layout_width="match_parent"/>
<TextView
android:layout_weight="2"
android:id="@+id/hargabar"
android:layout_height="match_parent"
android:background="@drawable/borderc"
android:text="Harga"
android:gravity="left"
android:layout_width="match_parent"/>
<TextView
android:id="@+id/kodebar"
android:layout_weight="2.5"
android:background="@drawable/borderc"
android:text="kode"
android:gravity="left"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
</TableRow>
</TableLayout>
</LinearLayout>
答案 0 :(得分:0)
每个TextView应具有相等的权重= 1
每个TextView的布局宽度应为= 0dp
删除重量总和
答案 1 :(得分:0)
首先从android:weightSum="9"
和TableLayout
删除TableRow
。现在在android:stretchColumns="*"
内添加TableLayout
。