应用已停止Android

时间:2015-10-29 09:00:39

标签: java android

请帮助我。enter image description here

<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" />

1 个答案:

答案 0 :(得分:0)

此活动已有窗口装饰提供的操作栏。 这是你的错误。 将您的活动主题更改为NoActionBar主题。它可以解决您的问题。

<style name="NoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar">
 ...
</style>