如何制作不透明工具栏项目的透明工具栏

How to make transparent toolbar with not transparent toolbar items

我怎样才能使自定义工具栏透明且带有可见的工具栏项目? 我有一个带有回收器视图的页面,我想在我的透明工具栏下看到我的回收器视图,并带有可见的工具栏项目。 它应该看起来像 this

像这样设置工具栏:

<android.support.v7.widget.Toolbar
        android:id="@+id/tbsobre"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@android:color/transparent"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>

试试这个

<android.support.v7.widget.Toolbar
 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:id="@+id/toolbar"
 android:layout_width="match_parent"
 android:layout_height="?attr/actionBarSize"
 android:background="@drawable/background_toolbar" />

现在在 res/drawble

中创建一个 background_toolbar.xml
<?xml version="1.0" encoding="utf-8"?>

 <shape
xmlns:android="http://schemas.android.com/apk/res/android">

<gradient
    android:angle="270"
    android:endColor="@android:color/transparent"
    android:startColor="#66000000"/>
</shape>

现在设置工具栏