此活动已具有窗口装饰提供的操作栏


496

试图移动我的东西Toolbar而不是操作栏,但我不断收到错误消息

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tyczj.weddingalbum/com.xxx.xxx.MainActivity}: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
            at android.app.ActivityThread.access$600(ActivityThread.java:141)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5039)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
            at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.
            at android.support.v7.app.ActionBarActivityDelegateBase.setSupportActionBar(ActionBarActivityDelegateBase.java:165)
            at android.support.v7.app.ActionBarActivity.setSupportActionBar(ActionBarActivity.java:92)
            at com.xxx.xxx.MainActivity.onCreate(MainActivity.java:113)
            at android.app.Activity.performCreate(Activity.java:5104)
            at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
            at android.app.ActivityThread.access$600(ActivityThread.java:141)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5039)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
            at dalvik.system.NativeStart.main(Native Method)

因此,我添加了自己的风格以使我的活动没有操作栏

<style name="AppCompatTheme" parent="@style/Theme.AppCompat.Light">
        <item name="android:windowActionBar">false</item>
</style>

这个主题适用于我的清单中的活动

<activity
        android:name=".MainActivity"
        android:windowSoftInputMode="adjustResize|stateHidden"
        android:theme="@style/AppCompatTheme" android:screenOrientation="portrait"/>

MainActivity扩展了GooglePlayServiceActivity,所以我也在那里设置了主题

<activity
       android:name=".GooglePlayServicesActivity"
       android:label="@string/title_activity_google_play_services"
       android:theme="@style/AppCompatTheme">

但是我仍然得到错误。我也不会在任何地方请求窗口功能。任何想法为什么我仍然得到这个?

Answers:


834

我认为您正在开发Android Lollipop,但无论如何都包括以下内容:

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

在您的主题声明中app/src/main/res/values/styles.xml

另外,如果您使用的AppCompatActivity是22.1版或更高版本的支持库,请添加以下行:

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

在完成所有这些添加之后,您的主题声明可能看起来像这样:

<!-- Base application theme. -->
<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>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

18
windowActionBar不一样的android:windowActionBar
tyczj 2014年

65
是的,但是AppCompat的内容着眼于应用名称空间属性,而不是android属性。这样,即使在最初没有属性的平台中,也可以指定该属性。这就是它允许向后移植诸如colorPrimary之类的东西的方式。
yarian 2014年

4
当我在样式中添加该行时,应用程序崩溃:(
rkmax 2015年

9
此外,如果你正在使用AppCompatActivity添加<项目名称=“windowNoTitle”>真正</项目>后22.1支持库stackoverflow.com/a/29853299/1402525
尼克

4
不要忘记在清单文件中的应用程序标签中添加android:theme =“ @ style / AppTheme”。
live-love

202

另一个简单的方法是使您的主题Theme.AppCompat.Light.NoActionBar像这样:

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

我也尝试过这种方法,但是仍然出现错误。但是,在我将主题设置为我之前,可能GooglePlayServiceActivity
还没

1
是的,这就是我一直在使用的。只需确保活动在清单中使用了此主题
MrEngineer13

6
我发现此解决方案比@Nadir Belhaj的解决方案更为优雅,尽管它们都是正确的。
voghDev

我认为这是更好的答案,使用内联XML属性(windowActionBar = false)不起作用-我遇到了与@tyczj相同的错误
Booger

在这种情况下,您不能使用Theme.AppCompat.Light.DarkActionBar,它实际上是有用的父级。
f470071

125

单行添加android:theme="@style/AppTheme.NoActionBar"activityAndroidManifest和你做。


AndroidManifest.xml

<activity android:name=".activity.YourActivity"
          android:theme="@style/AppTheme.NoActionBar"><!-- ADD THIS LINE -->

styles.xml

<style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
</style>

52

要将工具栏用作操作栏,请首先禁用装饰提供的操作栏。

最简单的方法是让您的主题从

Theme.AppCompat.NoActionBar

(或其轻型变体)。

其次,通常通过您的布局XML创建一个Toolbar实例:

<android.support.v7.widget.Toolbar
    android:id=”@+id/my_awesome_toolbar”
    android:layout_height=”wrap_content”
    android:layout_width=”match_parent”
    android:minHeight=”?attr/actionBarSize”
    android:background=”?attr/colorPrimary” />

然后在“活动”或“片段”中,将“工具栏”设置为充当“操作栏”:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.blah);

    Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
    setSupportActionBar(toolbar);
}

这段代码对我有用。


1
谢谢!我忘了添加<android.support.v7.widget.Toolbar到XML。
CoolMind

1
我不知道为什么我的工具栏颜色只是空白。似乎无法弄清楚如何将其更改为绿色。我感到很愚蠢,因为我只需要将android:background =“”放在布局文件的<android.support.v7.widget.Toolbar />中,就可以了!。谢谢
安德鲁·欧文

21

如果您想将某些活动与操作栏组合在一起,而又不将其组合,则应使用已启用操作栏的基本主题,然后创建一个子主题,以便将其用于不需要操作栏的活动上

例如,您可以使用这样的子样式

             <style name="AppTheme.NoActionBar">
               <item name="windowActionBar">false</item>
               <item name="windowNoTitle">true</item>
            </style>

当基本主题扩展时,说

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

然后在活动标记内的AndroidManifest File中使用非actionbar主题,例如

   <activity
        android:name="com.example.NonActionBarActivity"
        android:theme="@style/AppTheme.NoActionBar"

您必须将其应用于不需要操作栏的每个单独的活动,因此,如果您的项目需要的操作栏活动少于非活动栏,那么最好在基本主题级别上应用此操作


12

我也面临同样的问题。但是我用过:

getSupportActionBar().hide();

之前

setContentView(R.layout.activity_main);

现在正在工作。

我们可以在Style.xml中尝试其他选项,

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

8

将此添加到您的values / styles.xml中

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

<style name="AppBaseTheme" parent="YourCustomTheme">

</style>

<style name="AppTheme" parent="AppBaseTheme">

</style>

并在values-v11 / styles.xml和values-v14 / styles.xml中添加以下代码

<style name="AppBaseTheme" parent="YourCustomTheme">

</style>

而已。会的。


6

你需要改变

  <activity
        android:name=".YOUR ACTIVITY"
        android:theme="@style/AppTheme.NoActionBar" />
</application>`

清单中的这些行。它将完全适合我。


5

转到项目的“ style.xml”,并将windowActionBar设置为false

<style name="AppCompatTheme" parent="@style/Theme.AppCompat.Light">
        <item name="android:windowActionBar">false</item>
</style>

13
当您对我的问题的回答不正确时,您如何帮助他人
tyczj 2014年

代替使用“ Theme.AppCompat.Light”,而使用“ Theme.AppCompat.Light.NoActionBar”
Christina

4

在位于style.xml的应用程序主题中添加以下两行:

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

    //Add this two line will fix your problem
    <item name="windowNoTitle">true</item>   <--1(this applies after 22.0.1 support library i think 
    <item name="windowActionBar">true</item> <--2


4

我在XML中添加了工具栏。然后在我的活动中,我添加了以下语句:

setSupportActionBar(toolbar);

删除它对我有用。希望对您有所帮助。


如果我不想删除它怎么办?那就是使用工具栏的东西。
Sreekanth Karumanaghat

我不确定,但是我想删除此“ setSupportActionBar(toolbar);” 工具栏将保留在那里。
哈里·纳姆

4

如果您在此行得到错误:

setSupportActionBar(...);

您需要检查您的活动是否引用了包含工具栏的主题。您的应用程序的AppTheme可能已经包含一个工具栏,例如

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

您正在尝试添加第二个。如果要使用应用程序的AppTheme,则需要从manifest.xml文件中的活动中删除主题。

例如:

<activity
    android:name=".ui.activities.SettingsActivity"
    android:theme="@style/AppTheme1" /> --> remove this theme

4

在清单的应用程序标记内或活动标记内使用此代码。

android:theme =“ @ style / AppTheme.NoActionBar”



2

简而言之,您可以执行以下操作:

if (android.os.Build.VERSION.SDK_INT >= 21) {
        Window window = getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
        window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
        window.setStatusBarColor(getResources().getColor(R.color.colorPrimaryDark));

    }

2

这就是我解决问题的方式。在您的代码中添加以下代码AndroidMainfest.xml

<activity android:name=".YourClass"
            android:theme="@style/Theme.AppCompat.Light.NoActionBar">
 </activity>

1
完善!感谢分享。
Sandeep Yohans


0
 <style name="AppCompatTheme" parent="@style/Theme.AppCompat.Light">
            <item name="android:windowActionBar">false</item>
    </style>

    Change this to NoActionBar 

        <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
            <!-- Customize your theme here. -->

        </style>

    This one worked for me

-1

有两种简单快捷的解决方案

转到res-> values-> styles

您也可以观看此视频以更轻松地点击此处

解决方案1:

您可以通过替换来删除操作栏

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

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

解决方案2:

只需添加这些行

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

所以现在您的样式文件如下所示

`

<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>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>

</style>

`


-2

我通过删除以下行解决了它:

android:theme="@style/Theme.MyCompatTheme"

来自活动属性 Manifest file


-2

只需放入parent="Theme.AppCompat.NoActionBar"您的style.xml文件

喜欢 - <style parent="Theme.AppCompat.NoActionBar" name="AppTheme.NoActionBar">

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.