Android: what replaced android.support.v4.app.NavUtils in later APIs?

I am programming a tablet application, API level 13 or higher. Therefore, I do not need a support library, i.e. android.support.v4.app.Fragment been replaced by android.app.Fragment and the like.

There was a neat android.support.v4.app.NavUtils class in the support library, but I cannot find an equivalent class in the higher APIs. So what replaced him or his methods? How can I use its methods without importing a support library? Is it possible?

+7
android android-fragments android-support-library
source share
1 answer

The Android version above, including Jelly Beans, contains NavUtils in the Activity class. So there is no separate lib structure for this.

+5
source share

All Articles