工具栏高程不在底部

时间:2015-08-29 08:22:10

标签: android material-design android-appcompat android-toolbar android-elevation

我正在尝试创建扩展工具栏,例如: enter image description here

我的活动xml:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
tools:ignore="MergeRootFrame" >

<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_height="128dp"
    android:layout_width="match_parent"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary" />

由于某种原因,高程不在工具栏的底部: enter image description here

有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

终于找到了 - 显示了两个工具栏,装饰一个和我添加的工具栏。将我的主题更改为继承自“Theme.AppCompat.Light.NoActionBar”,现在只有我的工具栏可见。

非常感谢!