Search code examples
androidandroid-fragmentsandroid-dialogfragment

Fragments and DialogFragments deprecated, what will replace them?


We can read in official Android doc

android.app.Fragment
This class was deprecated in API level 28. Use the Support Library Fragment for consistent behavior across all devices and access to Lifecycle.This class was deprecated in API level 28.

What is going on ?
What we should use now instead of Fragments and DialogFragments ?


Solution

  • You have to change the import statement only.

    From : android.app.Fragment To: android.support.v4.app.Fragment

    That's it