web-dev-qa-db-ja.com

クラス「androidx.core.widget.DrawerLayout」が見つかりませんでした

Android StudioメニューオプションRefactor-> Refactor to Androidx ...を使用してAndroidxパッケージに移行した後...

私のbuild.gradleは次のようになります

implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
implementation 'com.google.Android.material:material:1.1.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'

アプリの実行中に、私はこれに遭遇します:

Didn't find class "androidx.core.widget.DrawerLayout" 

移行ツールにも同じ問題があるようです

10
hannes ach

交換するだけで解決できました

androidx.core.widget.DrawerLayout

androidx.drawerlayout.widget.DrawerLayout

それが現れるあらゆる場所で。

31
hannes ach