当前位置: 首页 > 知识库问答 >
问题:

将RecyclView CardView背景更改为透明

戚俊人
2023-03-14

问题简短版:

我想让我的CardView和RecyclView背景透明,所以片段/活动背景应该是可见的。

解释:

我有一个带有背景图像的活动A,片段B在其框架布局上被替换,在片段B中我有recyclerView,现在有了CardView,问题是我想让每个背景都透明,这样只有CardView才能在活动的实际背景下可见

活动(A)

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/fl"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/transparent"
        android:backgroundTint="@android:color/transparent"/>

片段(B)RecyclerView

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:backgroundTint="@android:color/transparent"
    android:background="@android:color/transparent">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv"
        tools:listitem="@layout/layout_video_item"
        android:backgroundTint="@android:color/transparent"
        android:background="@android:color/transparent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <TextView
        android:id="@+id/tv_not_found"
        android:text="No Media Found Yet"
        android:layout_gravity="center"
        android:gravity="center"
        android:visibility="gone"
        android:textAppearance="@style/TextAppearance.AppCompat.Large"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</android.support.design.widget.CoordinatorLayout>

CardView/项目布局

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginEnd="3dp"
    android:layout_marginStart="3dp"
    android:layout_marginTop="3dp"
    android:background="@android:color/transparent">

    <android.support.v7.widget.CardView
        style="@style/CardView.Light"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardUseCompatPadding="true"
        android:background="@android:color/transparent"
        android:backgroundTint="@android:color/transparent"
        app:cardCornerRadius="5dp"
        android:padding="0dp"
        app:cardElevation="0dp"
        tools:ignore="ContentDescription">

        <android.support.constraint.ConstraintLayout xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="0dp"
            android:background="@color/colorAccent">

            <ImageView
                android:id="@+id/media_image"
                android:layout_width="100dp"
                android:layout_height="0dp"
                android:scaleType="centerCrop"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:srcCompat="@android:color/darker_gray" />

            <ImageButton
                android:id="@+id/ib_delete"
                android:layout_width="30dp"
                android:layout_height="40dp"
                android:background="#00FFFFFF"
                android:padding="12dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:srcCompat="@drawable/ic_delete_white_24dp" />

            <ImageButton
                android:id="@+id/share_button"
                android:layout_width="30dp"
                android:layout_height="40dp"
                android:background="#00FFFFFF"
                android:padding="12dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toStartOf="@+id/ib_delete"
                app:srcCompat="@drawable/ic_share_white_24dp" />

            <TextView
                android:id="@+id/tv_video_name"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="5dp"
                android:ellipsize="marquee"
                android:singleLine="true"
                android:text="Title Test"
                android:textAppearance="@style/TextAppearance.AppCompat.Large.Inverse"
                android:textColor="@color/colorPrimaryText"
                app:layout_constraintEnd_toStartOf="@+id/tv_ribbon"
                app:layout_constraintStart_toEndOf="@+id/media_image"
                app:layout_constraintTop_toTopOf="parent" />

            <TextView
                android:id="@+id/tv_ribbon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_red_light"
                android:ellipsize="marquee"
                android:fontFamily="monospace"
                android:padding="3dp"
                android:singleLine="true"
                android:text="New"
                android:textColor="@color/colorIcons"
                android:textSize="14sp"
                android:visibility="gone"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <TextView
                android:id="@+id/tv_path"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="5dp"
                android:ellipsize="marquee"
                android:singleLine="true"
                android:text="subtitle test"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toEndOf="@+id/media_image"
                app:layout_constraintTop_toBottomOf="@+id/tv_video_name" />

            <ImageView
                android:id="@+id/iv_is_audio"
                android:layout_width="25dp"
                android:layout_height="25dp"
                android:layout_marginBottom="8dp"
                android:layout_marginStart="5dp"
                android:layout_marginTop="8dp"
                android:visibility="invisible"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintStart_toEndOf="@+id/media_image"
                app:layout_constraintTop_toBottomOf="@+id/tv_duration"
                app:srcCompat="@drawable/ic_settings_voice_black_24dp" />

            <ImageView
                android:id="@+id/iv_is_video"
                android:layout_width="25dp"
                android:layout_height="25dp"
                android:layout_marginStart="5dp"
                android:visibility="invisible"
                app:layout_constraintBottom_toBottomOf="@+id/iv_is_audio"
                app:layout_constraintStart_toEndOf="@+id/iv_is_audio"
                app:layout_constraintTop_toTopOf="@+id/iv_is_audio"
                app:srcCompat="@drawable/ic_theaters" />

            <ImageView
                android:id="@+id/iv_is_gif"
                android:layout_width="35dp"
                android:layout_height="30dp"
                android:layout_marginStart="5dp"
                android:visibility="invisible"
                app:layout_constraintBottom_toBottomOf="@+id/iv_is_video"
                app:layout_constraintStart_toEndOf="@+id/iv_is_video"
                app:layout_constraintTop_toTopOf="@+id/iv_is_video"
                app:srcCompat="@drawable/ic_gif" />

            <TextView
                android:id="@+id/tv_duration"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="5dp"
                android:layout_marginTop="8dp"
                android:text="0:00"
                app:layout_constraintStart_toEndOf="@+id/media_image"
                app:layout_constraintTop_toBottomOf="@+id/tv_path" />

            <TextView
                android:id="@+id/tv_size"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="8dp"
                android:text="0 MB"
                app:layout_constraintBottom_toBottomOf="@+id/tv_duration"
                app:layout_constraintStart_toEndOf="@+id/tv_duration"
                app:layout_constraintTop_toTopOf="@+id/tv_duration" />


        </android.support.constraint.ConstraintLayout>

    </android.support.v7.widget.CardView>

</RelativeLayout>

提问原因:

我知道要完成同样的任务还有很多问题,但我的要求没有什么不同,问这个问题的原因是什么都不适合我。

预料

共有1个答案

慕凌龙
2023-03-14

将CardView背景设置为app:cardBackground Color="#00ffffff"

 类似资料:
  • 问题内容: 我一直在尝试将画布的默认背景颜色从黑色更改为透明/其他任何颜色-但没有运气。 我的HTML: 我的CSS: 正如您在下面的在线示例中看到的那样,我在画布上附加了一些动画,因此不能仅执行不透明度:0; 在id上。 实时预览:http: //devsgs.com/preview/test/particle/ 任何想法如何覆盖默认黑色? 问题答案: 当我也开始使用three.js时,我遇到了

  • 我有一个带有文本块的div元素和一个父div,我在其中设置了一个背景图像。现在我想降低背景图像的不透明度。请建议我怎么做。 提前谢谢。 编辑: 我希望通过编辑 html 内容来改变我的博客文章看待 blogger.com 的方式。html 代码如下所示: 我试图用 div 元素包围上面的整个代码,并分别设置每个 div 的不透明度,如下所示: 但它不起作用。

  • 本文向大家介绍将three.js背景更改为透明或HTML中的另一种颜色,包括了将three.js背景更改为透明或HTML中的另一种颜色的使用技巧和注意事项,需要的朋友参考一下 如果要在three.js中使用透明背景,则需要在下面给出的代码中将alpha参数传递给WebGLRenderer构造函数- 但是,要设置背景色,

  • 通过使用启用透明背景功能,可以使用自定义图片作为背景。 controller.setTransparentBackground( true );

  • 我正在将PNG转换为JPG。透明背景默认变为黑色。我需要它是白色的。

  • 问题内容: 我有一个Swing JButton,我的项目也使用了以下代码: 现在,当尝试使用一个按钮更改背景时,它不会变成红色,只有边框变成红色。 在仍用于其余组件/项目时,如何将背景变为红色? 问题答案: 看一下错误4880747:XP L&F:REGRESSION:JButton上的setBackground设置Windows XP中的边框颜色 。评估部分指出: 更改按钮的外观总是会导致与当前