如何使用可见的工具栏项制作透明的自定义工具栏? 我有一个带有回收站视图的页面,我希望在我的透明工具栏下看到我的recyclerview,其中包含可见的工具栏项。 它应该看起来像this
答案 0 :(得分:0)
像这样设置工具栏:
<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"/>
答案 1 :(得分:0)
试试这个
<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>
现在设置工具栏