Android 工具栏崩溃问题 - 并非所有设备

Android Toolbar Crash Issue - Not all devices

我 运行 遇到了一个奇怪的问题。我在一堆设备上安装了一个应用程序 运行,但在一个设备上它失败了,因为一些看似简单但我无法弄清楚的事情。

工具栏在我的所有设备上都能正常工作 - 但导致此错误:

Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.

activity_main.xml:

<androidx.constraintlayout.widget.ConstraintLayout 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=".MainActivity">

<com.google.android.material.appbar.AppBarLayout
    android:id="@+id/appBarLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/header_color"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" />

</com.google.android.material.appbar.AppBarLayout>

themes.xml:

<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.TestApp" parent="Theme.MaterialComponents.DayNight.Bridge">
    <!-- Primary brand color. -->
    <item name="colorPrimary">@color/purple_500</item>
    <item name="colorPrimaryVariant">@color/purple_700</item>
    <item name="colorOnPrimary">@color/white</item>
    <!-- Secondary brand color. -->
    <item name="colorSecondary">@color/teal_200</item>
    <item name="colorSecondaryVariant">@color/teal_700</item>
    <item name="colorOnSecondary">@color/black</item>
    <!-- Status bar color. -->
    <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
    <!-- Customize your theme here. -->
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" >
    <item name="android:background">@color/header_color</item>
</style>

清单:

<activity
        android:name=".MainActivity"
        android:theme="@style/Theme.TestApp">
    </activity>

主要活动

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

Logcat 错误:

2021-02-14 14:04:37.574 13026-13026/com.edtest.devicetools E/AndroidRuntime: FATAL EXCEPTION: main Process: com.edtest.devicetools, PID: 13026 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.edtest.devicetools/com.edtest.devicetools.MainActivity}: 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:3762) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3938) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:85) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2277) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:246) at android.app.ActivityThread.main(ActivityThread.java:8425) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:596) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1130) 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 androidx.appcompat.app.AppCompatDelegateImpl.setSupportActionBar(AppCompatDelegateImpl.java:572) at androidx.appcompat.app.AppCompatActivity.setSupportActionBar(AppCompatActivity.java:159) at com.edtest.devicetools.MainActivity.onCreate(MainActivity.java:54) at android.app.Activity.performCreate(Activity.java:8183) at android.app.Activity.performCreate(Activity.java:8167) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1309) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3735) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3938)  at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:85)  at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)  at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2277)  at android.os.Handler.dispatchMessage(Handler.java:106)  at android.os.Looper.loop(Looper.java:246)  at android.app.ActivityThread.main(ActivityThread.java:8425)  at java.lang.reflect.Method.invoke(Native Method)  at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:596)  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1130)  2021-02-14 14:04:37.600 13026-13026/com.edtest.devicetools I/Process: Sending signal. PID: 13026 SIG: 9

应用在某些设备上每次都在 setSupportActionBar 上崩溃,但在其他设备上不会。所有设备都是 运行 Android 10,因此没有 OS 差异。

我已经阅读了所有关于工具栏的文章 我尝试了带有和不带有操作栏的父主题的各种组合 我可以保留或删除主题 windowactionbar 和 windownotitle 语句,无论如何似乎都有相同的结果。

有什么想法吗?

谢谢!

好的 - 我知道发生了什么。太令人沮丧了,我错过了这个 - 弄清楚其中的一些东西真是太疯狂了。

出于某种原因,主题让我感到困惑 - 但这是我稍后要弄清楚的。

这是出了什么问题:

新 Android Studio 项目有 themes.xml 并且还包括另一个 themes.xml(晚上)

我已将我所有的应用栏样式添加到 themes.xml - 但我没有对此文件的(夜间)版本做任何事情。

我遇到错误的设备在 Android 设置中设置为深色模式。

所以该应用程序尝试使用备用 themes.xml 但失败了。

因此,如果您还没有准备好在您的应用程序中使用任何双重人格,请终止该文件 或拥抱它并支持深色模式

无论如何 - 这是我的问题。

正如我在您提供的主题中看到的那样

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

改成

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

也许有帮助!

我在尝试 运行 物理设备上的应用程序时遇到了类似的问题。

在模拟器上效果很好,因为在模拟器上选择了浅色主题,但在物理设备上,它是深色主题。

在物理设备上将其更改为浅色主题使应用程序 运行 正常。

我的theme.xml是Theme.MaterialComponents.Light.NoActionBar

我将 Activity 中的工具栏设置为 setSupportActionBar(toolbar)