如何在导航抽屉中制作片段叠加工具栏

时间:2015-09-19 21:38:23

标签: android android-fragments navigation-drawer toolbar

我从this tutorial.

创建了material design navigation drawer

它与toolbar和所有人完美配合。我可以点击抽屉中的某个项目,并显示相应的fragment和标题。

但是我想让toolbar上的fragment透明,以便显示背景图片,如下图所示: enter image description here

问题:我的问题是片段似乎不是从工具栏上开始但在它下面。这就是结果:enter image description here

我不知道如何解决这个问题。欢迎任何建议。

1 个答案:

答案 0 :(得分:0)

将其用于toolbar.xml:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:src="@drawable/toolbar_image"/>

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

</FrameLayout>

当然,您需要将“@ drawable / toolbar_image”更改为要用于背景图像的drawable。