正如标题所述,我试图将一个CardView放在ScrollView中,但CardView高程阴影正在被它的父母关闭......
这是布局XML:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestScrollViewActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="128dp"
android:background="?colorPrimary"
android:gravity="bottom"
android:minHeight="?actionBarSize"/>
<ScrollView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:clipToPadding="false"
android:paddingBottom="40dp"
android:paddingTop="60dp">
<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="4dp"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="0dp">
<LinearLayout
android:layout_width="400dp"
android:layout_height="600dp"
android:orientation="vertical">
</LinearLayout>
</android.support.v7.widget.CardView>
</ScrollView>
</FrameLayout>
我找到的唯一解决方法是向父ScrollView添加填充或为子CardView添加边距......
有没有选项可以在不使用填充/边距的情况下防止这种情况发生?
感谢。
编辑:
这就是布局在没有在父滚动视图上设置填充的情况下的样子,因为可以看到,左右阴影被切断:
现在,如果将填充添加到父滚动视图侧,则可以正确绘制阴影,如下所示:
所以,我的主要问题是这是实现这一目标的唯一方法吗?或者父视图上有一个标记或配置,可以正确地绘制它的子视图?
答案 0 :(得分:39)
这对我来说也是一个类似的问题:
获取子视图以显示阴影的正确方法是在父级上设置填充并在该父级上设置android:clipToPadding =“false”。
答案 1 :(得分:18)
我遇到了同样的问题,我通过在卡片视图中添加 cardUseCompatPadding 属性解决了这个问题:
app:cardUseCompatPadding="true"
使用此解决方案后,阴影不会被剪切或裁剪。
答案 2 :(得分:-2)
This work for me adding cardUseCompatPadding attribute to the card view:
set android:clipToPadding="false" on that parent.