Recyclerview透明背景

时间:2017-05-08 17:47:02

标签: android

如何让Recyclerview透明化。不是它中的项目,而是实际的组件本身,所以我可以看到它背后的视图。我试过这个:

android:background="@android:color/transparent"

但它不起作用。如果使用该属性将其设置为颜色(如红色或蓝色),则可以使用...

1 个答案:

答案 0 :(得分:8)

尝试使用:

<android.support.v7.widget.RecyclerView
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:background="@null" />

这样,您的RecyclerView背景将为空,您可以看到父视图的背景。