0

我正在尝试创建一个扩展工具栏,例如: 在此处输入图像描述

我的活动 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" />

由于某种原因,海拔不在工具栏的底部: 在此处输入图像描述

任何想法?

谢谢!

4

1 回答 1

1

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

不管怎么说,还是要谢谢你!

于 2015-08-29T13:28:06.030 回答