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.chuhan.privatecalc.fragment.os.FragmentStatePagerAdapter.java

/**
 * Implementation of {@link android.support.v4.view.PagerAdapter} that
 * uses a {@link Fragment} to manage each page. This class also handles
 * saving and restoring of fragment's state.
 *
 * <p>This version of the pager is more useful when there are a large number

From source file com.bullshite.tvs.DSFragmentPagerAdapter.java

/**
 * Implementation of {@link android.support.v4.view.PagerAdapter} that
 * uses a {@link Fragment} to manage each page. This class also handles
 * saving and restoring of fragment's state.
 *
 * <p>This version of the pager is more useful when there are a large number

From source file com.debuff.life.presentation.core.adapter.MyFragmentPagerAdapter.java

/**
 * Implementation of {@link PagerAdapter} that
 * represents each page as a {@link } 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.linkin.fragment.FragmentPagerAdapter.java

/**
 * Implementation of {@link android.support.v4.view.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.
 */
public abstract class FragmentPagerAdapter extends PagerAdapter {

From source file com.bennyhuo.github.view.common.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>This version of the pager is best for use when there are a handful of

From source file com.bct.gpstracker.util.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>This version of the pager is best for use when there are a handful of

From source file com.cattle.adapters.SelectedPhotosViewPagerAdapter.java

public class SelectedPhotosViewPagerAdapter extends PagerAdapter {

    private final Context mContext;
    private final PhotoUploadController mController;
    private final OnSingleTapListener mTapListener;
    private final OnPickFriendRequestListener mFriendPickRequestListener;

From source file com.example.paidelidemo.utils.view.convenientbanner.CBLoopPagerAdapterWrapper.java

/**
 * A PagerAdapter wrapper responsible for providing a proper page to
 * LoopViewPager
 * 
 * This class shouldn't be used directly
 */

From source file com.android.inputmethod.keyboard.emoji.EmojiPalettesAdapter.java

final class EmojiPalettesAdapter extends PagerAdapter {
    private static final String TAG = EmojiPalettesAdapter.class.getSimpleName();
    private static final boolean DEBUG_PAGER = false;

    private final EmojiPageKeyboardView.OnKeyEventListener mListener;
    private final DynamicGridKeyboard mRecentsKeyboard;

From source file com.example.study.studyproject.adapter.FragmentStatePagerAdapter.java

public abstract class FragmentStatePagerAdapter extends PagerAdapter {
    private static final String TAG = "FragmentStatePagerAdapter";
    private static final boolean DEBUG = false;

    private final FragmentManager mFragmentManager;
    private FragmentTransaction mCurTransaction = null;