我有以下
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/admin_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal">
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:background="@color/silver">
我动态填充表格,但相对布局为银色,它只跨越大约 3/4 的表格行。如果我放置一个水平方向的 LinearLayout,它会完全跨越,但如果我将其更改为垂直,则会出现同样的问题。我需要表格行中的相对布局,因为我需要这样的东西:
价值
细节更多细节。
关于让相对布局跨越表格行的任何想法?