如何在工具栏上添加背景图像?

时间:2015-12-15 02:36:59

标签: android material-design toolbar

我正在学习android中的材料设计。 我希望使用背景图片制作toolbar,但不要折叠Toolbar。我想设置固定的背景图像。

我不知道该怎么做 任何想法,帮助或线索?

example

3 个答案:

答案 0 :(得分:3)

我刚刚在线下做了它有效,你试过吗?

(*)

如果您想学习材料设计,我的项目适合您,看看,希望它有所帮助。

https://github.com/DanielShum/MaterialAppBase

答案 1 :(得分:2)

您可以在xml中设置背景。

<android.support.v7.widget.Toolbar               xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?actionBarSize"
    android:background="@drawable/white_gray_rect">

</android.support.v7.widget.Toolbar>

答案 2 :(得分:0)

您必须使用Cordinator布局来实现此类型功能,请尝试将此链接用于指南Handling Scrolls with CoordinatorLayout