android - 无法解析资源@style.AppTheme.AppBarOverlay

标签 android android-studio android-fragments android-theme

<分区>

我的 xml 编辑器中出现了工具栏设计和呈现问题之间的冲突。

我想渲染工具栏的设计,但是好像已经渲染过了,找不到在哪里。

这里是java Activity 类。我在调用 setSupportActionBar第 21 行 处遇到错误:


public class NoteActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_note);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        Spinner spinnerCourses = findViewById(R.id.spinner_courses);

        List<CourseInfo> courses = DataManager.getInstance().getCourses();
        ArrayAdapter<CourseInfo> adapterCourses =
                new ArrayAdapter<>(this, android.R.layout.simple_spinner_item);
        adapterCourses.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

        spinnerCourses.setAdapter(adapterCourses);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_note, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

这是我的 styles.xml 文件:

<resources>

    <!-- 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>
    </style>

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

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>

</resources>

..这是我的 Activity 布局文件:

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context="com.emmanuelani.notekeeper.NoteActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

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

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_note"/>

</android.support.design.widget.CoordinatorLayout>

我收到以下错误:

08-30 15:00:14.783 32595-32595/com.emmanuelani.notekeeper E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.emmanuelani.notekeeper, PID: 32595
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.emmanuelani.notekeeper/com.emmanuelani.notekeeper.NoteActivity}: 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.
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2613)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
        at android.app.ActivityThread.-wrap11(ActivityThread.java)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1517)
        at android.os.Handler.dispatchMessage(Handler.java:111)
        at android.os.Looper.loop(Looper.java:227)
        at android.app.ActivityThread.main(ActivityThread.java:6102)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:859)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:749)
     Caused by: 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.
        at android.support.v7.app.AppCompatDelegateImpl.setSupportActionBar(AppCompatDelegateImpl.java:345)
        at android.support.v7.app.AppCompatActivity.setSupportActionBar(AppCompatActivity.java:130)
        at com.emmanuelani.notekeeper.NoteActivity.onCreate(NoteActivity.java:21)
        at android.app.Activity.performCreate(Activity.java:6280)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1131)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2566)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679) 
        at android.app.ActivityThread.-wrap11(ActivityThread.java) 
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1517) 
        at android.os.Handler.dispatchMessage(Handler.java:111) 
        at android.os.Looper.loop(Looper.java:227) 
        at android.app.ActivityThread.main(ActivityThread.java:6102) 
        at java.lang.reflect.Method.invoke(Native Method) 
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:859) 
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:749) 

最佳答案

我认为您应该检查 AndroidManifest.xml 文件,您在其中将哪种样式应用于您面临问题的 Activity 。

如果您应用了“AppTheme”主题,那么您应该尝试“AppTheme.NoActionBar”,或者如果您没有添加主题,它会默认选择“AppTheme”,因此您必须将 Activity 主题更改为“AppTheme.NoActionBar”在 AndroidManifest.xml 中

同时添加更改“AppTheme.NoActionBar”主题,如下所示,并将 AndroidManifest.xml 中的这个主题应用到“NoteActivity”。

<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
        <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>

关于android - 无法解析资源@style.AppTheme.AppBarOverlay,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57728381/

相关文章:

android - 使用 Appium 自动化混合应用程序

android - 如何在Android Studio中查看所有警告提示

android - 最新的 Android Studio 更新 - 损坏

android - 在 Android 中加载 fragment 需要更多时间

android - 使用兼容性库的 ListFragment 子类上的 ClassCastException

android - 如何从手机浏览器打开深层链接?

android - 将 ImageView 置于中心,宽度和高度为父宽度的一半?

android - 在 Eclipse 中添加断点,导致 Dalvik 崩溃

android - "Hiding"Android 中的 OverlayItem,可能吗?

android-studio - 我可以在Android studio的不同函数中初始化同一个图像两次吗