1

这是我得到的例外:

java.lang.ClassCastException: androidx.coordinatorlayout.widget.CoordinatorLayout$LayoutParams 无法转换为 androidx.drawerlayout.widget.DrawerLayout$LayoutParams

问题是,被“投射”的视图是抽屉布局。

我错过了什么?

调试

为了冗长,我添加了演员表。

例外

这是有问题的drawerLayout

<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:context=".home.HomeActivity">

还有抽屉

<com.google.android.material.navigation.NavigationView
    android:id="@+id/drawer"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="false"
    app:menu="@menu/home_drawer" />
4

0 回答 0