Сломанный вид отсечения / заполнения на API 21+ - PullRequest
0 голосов
/ 14 июня 2019

Android API 19:

API Android 21: (без полей)

одинаковые результаты на эмуляторе и реальном устройстве, в appcompat и androidx.

Как я могу получить изображение, как на KitKat, но на устройствах Lollipop? Потому что некоторые CardView на устройствах Lollipop выглядят как один большой разбитый вид

музыкальный макет предмета:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/musicrecyclerhelpLinearLayout1">

    <TextView
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:layout_width="wrap_content"
        android:id="@+id/musicrecyclerhelpTextView1"
        android:layout_marginLeft="10dp"
        android:text="why you can see this?"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"/>

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        app:srcCompat="@drawable/v_play"
        app:fabSize="normal"
        android:id="@+id/musicrecyclerhelpFloatingActionButton1"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"/>

</RelativeLayout>

код карты просмотров:

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card="http://schemas.android.com/apk/res-auto"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" />
</com.google.android.material.card.MaterialCardView>
...