Ошибка надувания класса androidx.drawerlayout.widget.DrawerLayout - PullRequest
0 голосов
/ 01 февраля 2019

Мой проект работал совершенно нормально, вдруг я не знаю, что случилось, теперь он дает мне ошибку, т.е. ** класс androidx.drawerlayout.widget.DrawerLayout

вот logcat Вызвано: java.lang.ClassNotFoundException: не найден класс «androidx.drawerlayout.widget.DrawerLayout» по пути: DexPathList [[zip-файл »/data/app/com.umangSRTC.thesohankathait.umang-L2YCZYWkXIH8BAH= / base.apk "], nativeLibraryDirectories = [/ data / app / com.umangSRTC.thesohankathait.umang-L2YCZYWk4BZhAgX-I8MBnQ == / lib / arm64, / system / lib64, / system / vendor / lib64]] в dalvik.system.BaseDexClassLoader.findClass (BaseDexClassLoader.java:134) **

Я испробовал все найденное мной решение: чистый проект, перестроить проект, аннулировать кэш и т. д. Но ни одно из них не сработало.

вот мой xml файл:

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout 
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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">


<include
    layout="@layout/app_bar_functionality"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<com.google.android.material.navigation.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_functionality"
    app:menu="@menu/activity_functionality_drawer" />

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