Search in sources :

Example 6 with GlimmrPagerAdapter

use of com.bourke.glimmr.common.GlimmrPagerAdapter in project glimmr by brk3.

the class GroupViewerActivity method initViewPager.

@Override
protected void initViewPager() {
    mViewPager = (ViewPager) findViewById(R.id.viewPager);
    mAdapter = new GlimmrPagerAdapter(getSupportFragmentManager(), mViewPager, mActionBar, CONTENT) {

        @Override
        public Fragment getItemImpl(int position) {
            switch(position) {
                case GROUP_POOL_PAGE:
                    return GroupPoolGridFragment.newInstance(mGroup);
                case GROUP_ABOUT_PAGE:
                    return GroupAboutFragment.newInstance();
            }
            return null;
        }
    };
    super.initViewPager();
}
Also used : GlimmrPagerAdapter(com.bourke.glimmr.common.GlimmrPagerAdapter) Fragment(android.support.v4.app.Fragment) GroupAboutFragment(com.bourke.glimmr.fragments.group.GroupAboutFragment) GroupPoolGridFragment(com.bourke.glimmr.fragments.group.GroupPoolGridFragment)

Aggregations

GlimmrPagerAdapter (com.bourke.glimmr.common.GlimmrPagerAdapter)6 Fragment (android.support.v4.app.Fragment)4 ViewPager (android.support.v4.view.ViewPager)2 GroupAboutFragment (com.bourke.glimmr.fragments.group.GroupAboutFragment)1 GroupPoolGridFragment (com.bourke.glimmr.fragments.group.GroupPoolGridFragment)1 FavoritesGridFragment (com.bourke.glimmr.fragments.home.FavoritesGridFragment)1 PhotoStreamGridFragment (com.bourke.glimmr.fragments.home.PhotoStreamGridFragment)1 PhotosetsFragment (com.bourke.glimmr.fragments.home.PhotosetsFragment)1 PhotosetGridFragment (com.bourke.glimmr.fragments.photoset.PhotosetGridFragment)1 AbstractPhotoSearchGridFragment (com.bourke.glimmr.fragments.search.AbstractPhotoSearchGridFragment)1 PhotostreamSearchGridFragment (com.bourke.glimmr.fragments.search.PhotostreamSearchGridFragment)1 PublicPhotoSearchGridFragment (com.bourke.glimmr.fragments.search.PublicPhotoSearchGridFragment)1 PageIndicator (com.viewpagerindicator.PageIndicator)1 TabPageIndicator (com.viewpagerindicator.TabPageIndicator)1