Search code examples
androidfragmentpageradapterpageviews

FragmentPageAdapter without FragmentActivity


Can I use FragmentPageAdapter without FragmentActivity?

My PageView is in a Fragment, not an activity.


Solution

  • Yes, you can. If you use the

    android.support.v13.app.FragmentPagerAdapter
    

    from support library v13. You can use native Fragment and Activity instead of v4.Fragment and FragmentActivity.

    In that case, you can contructor the Adapter like this

     mAdapter = new MyAdapter(getFragmentManager());