Translate

Tuesday, May 19, 2020

Error Inflating class android.support.v4.widget.SwipeRefreshLayout

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 :
android.support.v4.widget.SwipeRefreshLayout changed to => androidx.swiperefreshlayout.widget.SwipeRefreshLayout

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...