TableLayout 内的 CardView
CardView inside TableLayout
我在 table 布局中有 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,即使我没有设置填充家长尽职尽责!
我什至无法为我的简历设置背景,我也不知道为什么。
希望你能解决。
不用TableLayout,性能不好。解决方案:
<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
所以你应该将它设置为 "0dp"
.
我在 table 布局中有 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,即使我没有设置填充家长尽职尽责!
我什至无法为我的简历设置背景,我也不知道为什么。
希望你能解决。
不用TableLayout,性能不好。解决方案:
<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
所以你应该将它设置为 "0dp"
.