Question

guys.

I develop an app for Android API 14 and higher but I want to use ViewPager that comes in Android Support Library.

ViewPager needs FragmentPagerAdapter that uses android.support.v4.app.FragmentManager in the constructor. But within my activities I obviously have only android.app.FragmentManager because they extend android.app.Activity (not android.support.v4.app.FragmentActivity).

Is there any way to convert android.app.FragmentManager to android.support.v4.app.FragmentManager?

Extend my activities from FragmentActivity is not an option for me.

Était-ce utile?

La solution

You have to use the v13 support library, which includes a ViewPager using a normal FragmentManager :)

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top