我想要一张与此相似的cardview:
我希望我的CardView分开。问题是,我不知道如何让CardView边缘化或将CardView的宽度与其父级相匹配。如果我放置阴影或将高程设置为4dp / 8dp,则整个CardView会调整以显示两端的阴影。这不是我想要的。在棒棒糖前观看时情况更糟。
我相信这只是分隔它的粗线,可以用自定义drawable创建自定义视图。但这可以通过CardViews完成吗?我需要我的CardViews到最边缘并在底部显示分离。
这是我目前的布局。我为每个CardView创建了一个单独的布局文件,并将它们包含在我的片段中,如下所示:
this
以下是CardView的概况:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="false"
android:fitsSystemWindows="true"
tools:context="com.neonwarge.android.notifire.activity.TaskActivity"
android:orientation="vertical">
<include
layout="@layout/cardview1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<include
layout="@layout/cardview2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
....
</LinearLayout>