是否可以并排显示两个TableLayouts(在RelativeLayout中),以便两个表具有相同的宽度?我只是不知道该怎么做。我已经尝试将android:stretchColumns="*"
设置为两个表,但它只是将一个表拉伸到100%宽度,第二个表被推出屏幕。
答案 0 :(得分:3)
您可能可以使用LinearLayout
并将每个TableLayout
权重设置为0.5
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TableLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5" />
<TableLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5" />
</LinearLayout>