非法国家例外。由于工具栏

时间:2016-05-14 16:20:53

标签: java android android-actionbar

我正在尝试添加类似于soundclouds的操作栏。我按照有关如何在android developer网站上自定义操作栏的说明进行操作。错误似乎是操作栏已经提供但我正在尝试创建另一个。

java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.

这是 onCreate()

Toolbar toolbar = (Toolbar) findViewById(R.id.main_toolbar);
setSupportActionBar(toolbar);
addBirthdayFragment();

以下是布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".view.MainActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/main_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

</RelativeLayout>

我试图在布局和onCreate中分别删除工具栏的xml代码和java代码,但这不起作用;同样的错误仍然存​​在。它必须与我正在使用的主题有关,但我不知道到底是什么。它让我感到困惑,因为主题是默认主题,所以我没想到会这样。

这是我的主题

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
</style>

附带问题:

我正在尝试实现soundcloud操作栏的外观,它似乎是标签式的。如果我想要this结果,或者是否有其他用于标签式操作栏的小部件,这是我应该去的方式吗?

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

您的代码是:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
</style>

parent="Theme.AppCompat.Light.DarkActionBar"表示暗动作条。你需要把它改成NoActionBar。

   <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
</style>

答案 1 :(得分:0)

Android正在抱怨,因为您从未告诉它您将使用工具栏而不是Android提供的ActionBar。要让Android了解这一点,您需要将这些添加到您的样式中:

    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>

如果您有时想使用Android ActionBar和其他时间的工具栏,可以将以上两行添加到扩展AppTheme的新样式中,并在AndroidManifest.xml上使用它:

<!-- Use this one in the Manifest when you want to use the native ActionBar -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- your styling here -->
</style>

<!-- Use this one when you want to implement your own Toolbar -->
<style name="AppTheme.NoActionBar" parent="AppTheme">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>