Pergunta

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.

Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top