如何使GridLayout背景透明化?

时间:2016-06-22 19:07:24

标签: android css xml android-recyclerview android-gridlayout

我正在回收站视图中实现GridLayout,并从可绘制文件夹中加载图像。

Image Link here

你可以看到,背景是白色的,我想让它变成透明的, 我的这种布局的XML代码是

<?xml version="1.0" encoding="utf-8"?>


<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#000"
    android:id="@+id/card"
    card_view:cardCornerRadius="3dp"
    card_view:cardElevation="2dp"
    card_view:cardUseCompatPadding="true">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="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">

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="4dp"
        android:scaleType="centerCrop" />
    <TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAlignment="center"
        android:text="Abcd"
        android:textSize="18dp"
        android:textStyle="bold"
        android:textAllCaps="true"
        android:textColor="#ffffff"
        android:layout_marginTop="140dp"/>
</RelativeLayout>


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

我尝试过很多东西,例如: -

  • 将Recycler View的alpha设为0
  • 卡片视图的Alpha为0
  • 将卡背景颜色设置为透明并将最大高程设置为0以减少阴影

但是,我无法获得透明背景。任何人都可以提出新方法吗?

此外,使用的图像是具有透明背景的矢量图像。

更新

现在有效,感谢@Adley
我只需要删除我正在使用的卡片布局并将其转换为正常的相对布局

1 个答案:

答案 0 :(得分:0)

<强>编辑:

尝试将card_view:cardBackgroundColor="@android:color/transparent" 添加到根视图(CardView)。