我的活动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" />
有什么想法吗?
谢谢!
答案 0 :(得分:1)
终于找到了 - 显示了两个工具栏,装饰一个和我添加的工具栏。将我的主题更改为继承自“Theme.AppCompat.Light.NoActionBar”,现在只有我的工具栏可见。
非常感谢!