我在表格布局中有2张卡片视图。 代码:
<TableLayout android:id="@+id/TableLayout01" android:stretchColumns="*"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:layout_centerInParent="true"
android:layout_below="@+id/card_view3"
android:layout_marginTop="7dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp">
<TableRow android:id="@+id/TableRow01" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="1">
<android.support.v7.widget.CardView
android:layout_margin="5dp" android:layout_weight="1"
android:layout_height="180dp" android:layout_width="fill_parent"
android:background="#ffdbff3d">
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_margin="5dp" android:layout_weight="1"
android:layout_height="180dp" android:layout_width="fill_parent"
android:background="#ffdbff3d">
</android.support.v7.widget.CardView>
</TableRow>
</TableLayout>
cv1里面有一张图片,问题是当我设置图片(在cv1中)宽度为fill_parent时,图片占据了所有的行,并且不会只填充cv1,即使我没有设置填充父母做它的工作!
我甚至无法为我的简历设置背景,我也不知道为什么。
我希望你能解决它。
答案 0 :(得分:1)
没有必要使用TableLayout,它的性能很差。解决方案:
<h2 class="section-heading toggle open">heading title</h2>
<div id="content1" class="slide-content"></div>
</div>
更糟糕的是 - 如果你使用权重而不是你应该指定它会影响哪个属性,在这种特殊情况<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="180dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#ffdbff3d" />
<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="180dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#ffdbff3d" />
</LinearLayout>
中你应该将它设置为layout_width
。