material design navigation drawer
我
它与toolbar
和所有人完美配合。我可以点击抽屉中的某个项目,并显示相应的fragment
和标题。
但是我想让toolbar
上的fragment
透明,以便显示背景图片,如下图所示:
问题:我的问题是片段似乎不是从工具栏上开始但在它下面。这就是结果:
我不知道如何解决这个问题。欢迎任何建议。
答案 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。