Domanda

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.

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top