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.

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top