提问者:小点点

当视图的背景被改变时,我面临一个CardView和Material Design elevation的问题


当我试图改变CardView的背景,或者它的子背景(它覆盖了CardView的整个区域)时,仰角阴影会消失。

然而,当我使用app:contentpadding属性时,仰角阴影再次变得可见,但现在我在CardView上有了这个奇怪的填充,当然,这不太好看。 我发现,材料设计的观点也存在这样一个问题。 这里是没有背景的MaterialToolbar,这里是有背景的。 下面是我的XML代码。

   <?xml version="1.0" encoding="utf-8"?>

<androidx.cardview.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"
    app:cardCornerRadius="8dp"
    app:cardUseCompatPadding="true"
    app:cardElevation="4dp"
    >

        <androidx.appcompat.widget.LinearLayoutCompat
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:focusable="true"
            android:background="@android:color/holo_green_dark"
            >
            <androidx.appcompat.widget.AppCompatImageView
                android:id="@+id/news_image"
                android:layout_width="match_parent"
                android:layout_height="232dp"
                />

            <androidx.appcompat.widget.AppCompatTextView
                android:id="@+id/txt_news_text"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fontFamily="@font/numans"
                android:textSize="18sp"
                android:textStyle="bold"
                android:layout_margin="12dp"
                android:textColor="@color/colorToolBarDarkSeaBlue"
                />

            <androidx.appcompat.widget.AppCompatTextView
                android:id="@+id/txt_news_description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fontFamily="sans-serif-light"
                android:layout_margin="12dp"
                />

        </androidx.appcompat.widget.LinearLayoutCompat>
</androidx.cardview.widget.CardView> 

这是MaterialToolbar的代码

  <?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat 
    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"
    android:orientation="vertical"
    tools:context=".MainActivity">


    <com.google.android.material.appbar.MaterialToolbar
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:layout_margin="8dp"
        android:elevation="8dp"
        />

</androidx.appcompat.widget.LinearLayoutCompat>

共1个答案

匿名用户

创建一个角半径为卡片内部半径的drawable,将其设置为CardView内部布局的背景。然后,您可以调整布局的边距或背景角半径以调整阴影的视图。

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<solid android:color="#2e8b57" />


<corners android:radius="5dp"/>




</shape>