如何在android studio中找出logcat中的问题?

woobm2wo  于 2022-11-16  发布在  Android
关注(0)|答案(1)|浏览(195)

我有一个bug问题,我的应用程序在启动时关闭,我已经读到我应该在我的logcat中查找以确定问题,但我不知道如何阅读logcat并了解如何解决问题。这些都是我在logcat中得到的错误

FATAL EXCEPTION: main
                                                                                                

Process: com.mydomain.calculator, PID: 6294
                                                                                            

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.mydomain.calculator/com.mydomain.calculator.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.

这是我遇到的唯一一个androidruntime错误。我不知道如何解决它,有人能帮忙吗

hfyxw5xn

hfyxw5xn1#

我认为您的主题已经有一个工具栏,而在您的布局中您正试图使用另一个工具栏。因此,请删除主题中的默认工具栏。在themes.xml中,将parent更改为NoActionBar,如下所示。

<style name="<app theme name>" parent="Theme.MaterialComponents.DayNight.NoActionBar">

相关问题