Когда я пытаюсь изменить фон 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>