首页 > 解决方案 > 如何在 Android TV 的 ListItemPresenter 中删除默认阴影

问题描述

如何删除默认的黑色阴影(黑色阴影或每个角落)ListItemPresenter,附加演示者视图的图像

在此处输入图像描述

这是xml项目演示者:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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:background="@android:color/transparent"
    app:cardCornerRadius="16dp"
    android:layout_width="200dp"
    android:layout_height="200dp">

    <androidx.cardview.widget.CardView
        android:background="@android:color/transparent"
        app:cardCornerRadius="8dp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="8dp">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/block_bg_state"
            android:gravity="center"
            android:orientation="vertical">

            ...


        </androidx.constraintlayout.widget.ConstraintLayout>
    </androidx.cardview.widget.CardView>
</LinearLayout>

标签: androidxmlkotlinandroid-tvleanback

解决方案


如果您不想要阴影,则不需要使用 CardView。它的意思是作为“包装器”,为它所拥有的视图添加高程(阴影)和圆角。

如果这是您的完整布局,您还可以删除 LinearLayout 并将布局宽度/高度直接添加到您的 ConstraintLayout。


推荐阅读