(Android日常)关于ToolBar的坑

来源:互联网 发布:一元淘宝 编辑:程序博客网 时间:2024/05/17 06:57

近日,使用ToolBar的时候发现了个坑

![以下](http://img.blog.csdn.net/20160712134727811)

结果,没有效果对不对(What the f*ck)
如果这样,就OK了

<?xml version="1.0" encoding="utf-8"?><android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:toolbar="http://schemas.android.com/apk/res-auto"    android:id="@+id/toolBar"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:background="#00897B"    toolbar:navigationIcon="@drawable/previous"    toolbar:title="hello"></android.support.v7.widget.Toolbar>
0 0