Error inflating class com.google.android.material.navigation.NavigationView after migration to AndroidX

前端 未结 7 923
悲哀的现实
悲哀的现实 2020-12-19 06:11

After I updated my project to AndroidX with targetSdkVersion set to 28, my project crashes on installing it from the store for beta testing.

<
7条回答
  •  醉梦人生
    2020-12-19 06:53

    For those who the chosen answer didn't help them, I've found that had a problem with NavigationView theme and it should be an appCompat theme (at least for me). after creating a new style like:

    
    

    and used it with android:theme="@style/NavView" in NavigationView in my mainactivity.xml, the app runs perfectly now.

提交回复
热议问题