Translate

Tuesday, May 19, 2020

Error inflating class android.support.v7.widget.RecyclerView Android

I found found route cause of this problem as

My project migrated to AndroidX through AndroidStudio tools : Refactor -> Migrate to AndroidX..

In AndroidX this package was not available , which is causing this issue.


To resolve this problem please make this change :
Replaced :
android.support.v7.widget.RecyclerView
with
androidx.recyclerview.widget.RecyclerView
and it worked! 

No comments:

Post a Comment

Could not identify launch activity: Default activity not found : Error while Launching activity

Problem : I got this Error , When I tried to create an application without any Activity . Basically like to develop an Android Headless appl...