从卡片布局中删除阴影

Removing shadow from card layout

我想通过设置 android:background="@android:drawable/dialog_holo_light_frame" 从我使用的默认卡片布局中删除阴影。我该怎么做?

<com.etsy.android.grid.StaggeredGridView
        android:numColumns="3"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:gravity="center"
        android:background="@android:drawable/dialog_holo_light_frame"

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/searchtext"
        app:item_margin="8dp"
        android:id="@+id/gridgip"

        />

不要使用那个背景使用你自己的颜色背景。只需删除代码并提供一些颜色代码,如下所示:

android:background = "FF0000" //this is for RED color

通过输入十六进制颜色代码来使用您的自定义颜色。 按照这个 link: http://html-color-codes.info/