Example usage for android.support.v4.app FragmentPagerAdapter subclass-usage

List of usage examples for android.support.v4.app FragmentPagerAdapter subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.app FragmentPagerAdapter subclass-usage.

Usage

From source file com.zitech.framework.widget.TabsFragmentAdapter.java

/**
 * DescriptionTabsFragmentAdapter
 * Created byCaMnter
 * Time2015-10-15 14:58
 */
public class TabsFragmentAdapter extends FragmentPagerAdapter implements SlidingTabs.TabsTitleInterface {

From source file com.krossovochkin.kwitter.adapters.ViewPagerAdapter.java

/**
 * Created by Vasya Drobushkov <vasya.drobushkov@gmail.com> on 20.02.14.
 */
public class ViewPagerAdapter extends android.support.v4.app.FragmentPagerAdapter {

    private Context mContext;

From source file de.tobiasbielefeld.solitaire.ui.about.TabsPagerAdapter.java

/**
 * Adapter for the tabs
 */

public class TabsPagerAdapter extends FragmentPagerAdapter {

From source file com.oneteam.framework.android.ui.impl.viewmodel.SectionPagerAdapter.java

/**
 * @author islam
 * 
 */
public class SectionPagerAdapter extends FragmentPagerAdapter {

From source file edu.uwp.alga.adapter.SectionsPagerAdapter.java

/**
 * A {@link FragmentPagerAdapter} that returns a fragment corresponding to
 * one of the sections/tabs/pages.
 */
public class SectionsPagerAdapter extends FragmentPagerAdapter {

From source file com.cw.litenote.tabs.TabsPagerAdapter.java

/**
 * Created by cw on 2018/3/20.
 *
 *  View Pager Adapter Class
 *
 */

From source file com.commonsware.android.fileseditor.SampleAdapter.java

public class SampleAdapter extends FragmentPagerAdapter {
    private static final int[] TITLES = { R.string.internal, R.string.external, R.string.pub };
    private static final int TAB_INTERNAL = 0;
    private static final int TAB_EXTERNAL = 1;
    private static final String FILENAME = "test.txt";
    private final Context ctxt;

From source file de.aw.awlib.adapters.AWViewPagerAdapter.java

/**
 * Adapter fuer ViewPager
 */
public abstract class AWViewPagerAdapter extends FragmentPagerAdapter {
    private final int PAGE_COUNT;
    private final String tabtitles[];

From source file de.servingo.materialcolors.example.util.view.ViewPagerAdapter.java

/**
 * @author Daniel Holderbaum
 */
public class ViewPagerAdapter extends FragmentPagerAdapter {
    private final List<Fragment> fragmentList = new ArrayList<>();
    private final List<String> fragmentTitleList = new ArrayList<>();

From source file com.zhihu.matisse.internal.ui.adapter.PreviewPagerAdapter.java

public class PreviewPagerAdapter extends FragmentPagerAdapter {

    private ArrayList<Item> mItems = new ArrayList<>();
    private OnPrimaryItemSetListener mListener;

    public PreviewPagerAdapter(FragmentManager manager, OnPrimaryItemSetListener listener) {