Example usage for android.support.v4.view PagerAdapter subclass-usage

List of usage examples for android.support.v4.view PagerAdapter subclass-usage

Introduction

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

Usage

From source file com.grottworkshop.gwsmaterialcalendarview.MonthPagerAdapter.java

/**
 * Pager adapter backing the calendar view
 * Created by fgrott on 9/16/2015.
 */
class MonthPagerAdapter extends PagerAdapter {

From source file com.commonsware.cwac.pager.v4.ArrayPagerAdapter.java

abstract public class ArrayPagerAdapter<T extends Fragment> extends PagerAdapter {
    public static final RetentionStrategy KEEP = new RetentionStrategy() {
        public void attach(Fragment fragment, FragmentTransaction currTransaction) {
            currTransaction.attach(fragment);
        }

From source file com.cleveroad.slidingtutorial.FragmentPagerAdapter.java

/**
 * Implementation of {@link PagerAdapter} that
 * represents each page as a {@link Fragment} that is persistently
 * kept in the fragment manager as long as the user can return to the page.
 * <p>
 * <p>This version of the pager is best for use when there are a handful of

From source file com.iaraby.template.control.DetailsPagerAdapter.java

/**
 * Manage the display of items in DetailsFrag view pager
 *
 */
public class DetailsPagerAdapter extends PagerAdapter {

From source file com.mastercard.masterpasswallet.adapters.CardPagerAdapter.java

/**
 * View Pager for cards on CardsActivity screen. Lets user swipe through cards
 */
public class CardPagerAdapter extends PagerAdapter {

    private final Context mContext;

From source file com.example.adapter.GalleryImageAdapter.java

public class GalleryImageAdapter extends PagerAdapter {

    private LayoutInflater mInflater;
    private Context context;
    public List<String> list;

From source file com.cleanwiz.applock.ui.adapter.AppPagerAdapter.java

public class AppPagerAdapter extends PagerAdapter {

    public static final int APP_GRID_COLUMN = 4;

    private int line_num = 5;
    private int app_num;

From source file com.jana.android.ui.impl.viewmodel.ImagePagerAdapter.java

/**
 * @author islam
 */
public class ImagePagerAdapter<T extends Image> extends PagerAdapter implements IconPagerAdapter {

    private List<T> mImageList = new ArrayList<T>();

From source file com.github.barteksc.pdfviewpager.adapter.PDFPagerAdapter.java

public class PDFPagerAdapter extends PagerAdapter {
    String pdfPath;
    Context context;
    PdfiumCore pdfiumCore;
    PdfDocument pdfDocument;

From source file com.github.michalbednarski.intentslab.uihelpers.FragmentTabMergingPagerAdapter.java

/**
 * Implementation of {@link android.support.v4.view.PagerAdapter} that
 * represents each page as a {@link android.support.v4.app.Fragment} that is persistently
 * kept in the fragment manager as long as the user can return to the page.
 *
 * <p>This version of the pager is best for use when there are a handful of