在Android中我试图使用这个xml来获取LinearLayout旁边的TableLayout。但我无法让它发挥作用。 TableLayout总是占用屏幕的整个宽度。如何让它与LinearLayout共享屏幕宽度?
<LinearLayout android:layout_width="fill_parent" android:weightSum="1" android:layout_height="wrap_content" android:orientation="horizontal">
<TableLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="0.5">
<TableRow>
<TextView android:text="Name1:" />
<TextView android:text="Value1" />
</TableRow>
<TableRow>
<TextView android:text="Name2:" />
<TextView android:text="Value2" />
</TableRow>
</TableLayout>
<LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="0.5"></LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
这表示线性布局的布局宽度为0dp。使其包装内容并使表格布局具有权重:1&gt; linear:0和表格布局设置为填充父级。
答案 1 :(得分:0)
如上所述,请勿将表格宽度设为0dp。我会将根元素设置为相对布局,然后声明线性布局应该位于表格布局的右侧。