<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" />
答案 0 :(得分:0)
此活动已有窗口装饰提供的操作栏。 这是你的错误。 将您的活动主题更改为NoActionBar主题。它可以解决您的问题。
<style name="NoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
</style>