List of usage examples for android.support.v4.app FragmentPagerAdapter subclass-usage
From source file eugene.yalantistask2.utils.adapters.ViewPagerAdapter.java
/** * Adapter for ViewPager */ public class ViewPagerAdapter extends FragmentPagerAdapter { private List<Fragment> mFragmentList = new ArrayList<>(); private List<String> mFragmentTitleList = new ArrayList<>();
From source file com.voy.adapter.VPFragmentAdapter.java
public class VPFragmentAdapter extends FragmentPagerAdapter { private List<BaseLazyFragment> mListFragments = null; public VPFragmentAdapter(FragmentManager fm, List<BaseLazyFragment> fragments) { super(fm);
From source file com.example.android.popularmovies.adapters.PagerAdapterMovie.java
/** * Created by Waszak on 13.02.2017. */ public class PagerAdapterMovie extends FragmentPagerAdapter {
From source file com.commonsware.android.pager2.SampleAdapter.java
public class SampleAdapter extends FragmentPagerAdapter { Context ctxt = null; public SampleAdapter(Context ctxt, FragmentManager mgr) { super(mgr); this.ctxt = ctxt;
From source file com.commonsware.android.pager3.SampleAdapter.java
public class SampleAdapter extends FragmentPagerAdapter { Context ctxt = null; public SampleAdapter(Context ctxt, FragmentManager mgr) { super(mgr); this.ctxt = ctxt;
From source file com.example.muhammad.miwok.CategoryAdapter.java
/** * Provides the appropriate {@link Fragment} for a view pager. */ public class CategoryAdapter extends FragmentPagerAdapter { /** Context of the app */ private Context mContext;
From source file com.rocko.wwv.MyViewPagerAdapter.java
/** * @author: Rocko */ public class MyViewPagerAdapter extends FragmentPagerAdapter { final int PAGE_COUNT = 3;
From source file com.commonsware.android.pagerbar.SampleAdapter.java
public class SampleAdapter extends FragmentPagerAdapter { Context ctxt = null; public SampleAdapter(Context ctxt, FragmentManager mgr) { super(mgr); this.ctxt = ctxt;
From source file com.experiments.core.application.adapters.CommonPagerAdapter.java
/**
* Author : Krupal Shah
* Date : 09-Apr-16
* <p>
* common class for all view pager adapters
* there are two overloaded constructors. one is without titles and other is with titles<br/>
From source file com.commonsware.android.pagernested.SampleAdapter.java
public class SampleAdapter extends FragmentPagerAdapter { Context ctxt = null; public SampleAdapter(Context ctxt, FragmentManager mgr) { super(mgr); this.ctxt = ctxt;