У меня проблема с CardView и повышением уровня Material Design при изменении фона представления - PullRequest
0 голосов
/ 16 июня 2020

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

0 голосов
/ 16 июня 2020

Создайте чертеж с радиусом угла внутреннего радиуса карты, установите его в качестве фона макета внутри вида карты. Затем вы можете настроить поля макета или радиус угла фона, чтобы настроить вид тени.

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

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


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




</shape>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...