java.lang.RuntimeException:如何解决此崩溃?这是什么原因造成的?

java.lang.RuntimeException:如何解决此崩溃?这是什么原因造成的?,java,android,xml,crash,developer-console,Java,Android,Xml,Crash,Developer Console,我在开发人员控制台中显示了此崩溃报告,我完全不知道它的含义: java.lang.RuntimeException: at android.app.ActivityThread.performLaunchActivity (ActivityThread.java:3319) at android.app.ActivityThread.handleLaunchActivity (ActivityThread.java:3415) at android.app.ActivityT

我在开发人员控制台中显示了此崩溃报告,我完全不知道它的含义:

java.lang.RuntimeException: 

  at android.app.ActivityThread.performLaunchActivity (ActivityThread.java:3319)

  at android.app.ActivityThread.handleLaunchActivity (ActivityThread.java:3415)

  at android.app.ActivityThread.access$1100 (ActivityThread.java:229)

  at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1821)

  at android.os.Handler.dispatchMessage (Handler.java:102)

  at android.os.Looper.loop (Looper.java:148)

  at android.app.ActivityThread.main (ActivityThread.java:7406)

  at java.lang.reflect.Method.invoke (Native Method)

  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:1230)

  at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1120)
Caused by: android.view.InflateException: 

  at android.view.LayoutInflater.inflate (LayoutInflater.java:551)

  at android.view.LayoutInflater.inflate (LayoutInflater.java:429)

  at android.view.LayoutInflater.inflate (LayoutInflater.java:380)

  at androidx.appcompat.app.AppCompatDelegateImpl.setContentView (AppCompatDelegateImpl.java:555)

  at androidx.appcompat.app.AppCompatActivity.setContentView (AppCompatActivity.java:161)

  at com.xxxxx.xxxxxxxxx.MainActivity.onCreate (MainActivity.java:91)

  at android.app.Activity.performCreate (Activity.java:6904)

  at android.app.Instrumentation.callActivityOnCreate (Instrumentation.java:1136)

  at android.app.ActivityThread.performLaunchActivity (ActivityThread.java:3266)
Caused by: android.view.InflateException: 

  at android.view.LayoutInflater.createViewFromTag (LayoutInflater.java:794)

  at android.view.LayoutInflater.createViewFromTag (LayoutInflater.java:716)

  at android.view.LayoutInflater.rInflate (LayoutInflater.java:847)

  at android.view.LayoutInflater.rInflateChildren (LayoutInflater.java:810)

  at android.view.LayoutInflater.rInflate (LayoutInflater.java:855)

  at android.view.LayoutInflater.rInflateChildren (LayoutInflater.java:810)

  at android.view.LayoutInflater.inflate (LayoutInflater.java:527)
Caused by: android.content.res.Resources$NotFoundException: 

  at android.content.res.Resources.loadDrawableForCookie (Resources.java:4249)

  at android.content.res.Resources.loadDrawable (Resources.java:4156)

  at android.content.res.Resources.loadDrawable (Resources.java:4006)

  at android.content.res.TypedArray.getDrawable (TypedArray.java:886)

  at android.widget.ImageView.<init> (ImageView.java:157)

  at android.widget.ImageView.<init> (ImageView.java:145)

  at androidx.appcompat.widget.AppCompatImageView.<init> (AppCompatImageView.java:72)

  at androidx.appcompat.widget.AppCompatImageView.<init> (AppCompatImageView.java:68)

  at androidx.appcompat.app.AppCompatViewInflater.createImageView (AppCompatViewInflater.java:187)

  at androidx.appcompat.app.AppCompatViewInflater.createView (AppCompatViewInflater.java:107)

  at androidx.appcompat.app.AppCompatDelegateImpl.createView (AppCompatDelegateImpl.java:1407)

  at androidx.appcompat.app.AppCompatDelegateImpl.onCreateView (AppCompatDelegateImpl.java:1457)

  at android.view.LayoutInflater.createViewFromTag (LayoutInflater.java:758)
所以我认为它与XML文件有关。 以下是activity_main.xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical"
    android:id="@+id/mainview">



    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/main_color"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.5"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:title="My App" />

        <ImageView
            android:id="@+id/search_ico"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_marginEnd="10dp"
            android:layout_marginRight="10dp"
            android:src="@drawable/ic_search_white_24dp"
            app:layout_constraintBottom_toBottomOf="@+id/toolbar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

    <androidx.drawerlayout.widget.DrawerLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:id="@+id/drawerLayout">



        <com.google.android.material.navigation.NavigationView
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:id="@+id/navigationView"
            app:itemTextColor="@color/black"
            app:menu="@menu/drawermenu"
            />


    </androidx.drawerlayout.widget.DrawerLayout>
</LinearLayout>

我添加了带有搜索图标last update和约束布局的ImageView,在添加此之前,一切正常。 Android版本6的用户无法打开应用程序。
请帮我解决这个问题,谢谢

除了
drawable-v24
之外,您还必须在项目的
res
目录的
drawable
文件夹中添加
ic\u search\u white\u 24dp
,以支持低于24级的设备API。

不太熟悉这个东西的bug。。。由以下原因引起:android.content.res.Resources$NotFoundException…在android.content.res.Resources.loadDrawableForCookie(Resources.java:4249)上,这对您意味着smthg吗?图像是否丢失?检查项目的
res
目录中的
drawable
文件夹中是否存在
ic\u search\u white\u 24dp
?@Md.Asaduzzaman刚刚检查了它,它的名字后面有一个(v24)。这可能是错误吗?是的,检查我的回答哈,我的微薄贡献清除了摘要的路径我只是删除了文件并将其复制到普通的可绘图文件夹中。我不再把它放在drawable-v24文件夹中。这样行吗?还是我必须把它都放进去?是的,很好。如果你把它放在默认的
drawable
文件夹中,那么它在所有设备上都可以使用。欢迎使用。请再投一票
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical"
    android:id="@+id/mainview">



    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/main_color"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.5"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:title="My App" />

        <ImageView
            android:id="@+id/search_ico"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_marginEnd="10dp"
            android:layout_marginRight="10dp"
            android:src="@drawable/ic_search_white_24dp"
            app:layout_constraintBottom_toBottomOf="@+id/toolbar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

    <androidx.drawerlayout.widget.DrawerLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:id="@+id/drawerLayout">



        <com.google.android.material.navigation.NavigationView
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:id="@+id/navigationView"
            app:itemTextColor="@color/black"
            app:menu="@menu/drawermenu"
            />


    </androidx.drawerlayout.widget.DrawerLayout>
</LinearLayout>