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.pacific.adapter.BasePagerAdapter2.java

/**
 * PagerAdapter for ViewPager
 */
public abstract class BasePagerAdapter2<T extends Item, H extends ViewHolder> extends PagerAdapter
        implements DataIO<T>, ListenerProvider {
    /**

From source file com.android.settings.PreviewPagerAdapter.java

/**
 * A PagerAdapter used by PreviewSeekBarPreferenceFragment that for showing multiple preview screen
 * regarding a single setting and allowing the user to swipe across them.
 */
public class PreviewPagerAdapter extends PagerAdapter {

From source file com.gokuai.yunkuandroidsdk.compat.v2.BasePagerAdapter.java

/**
 * Class wraps URLs to adapter, then it instantiates <b>UrlTouchImageView</b>
 * objects to paging up through them.
 */
public class BasePagerAdapter extends PagerAdapter {

From source file com.gokuai.yunkuandroidsdk.gallery.touchwedgit.BasePagerAdapter.java

/**
 * Class wraps URLs to adapter, then it instantiates <b>UrlTouchImageView</b>
 * objects to paging up through them.
 */
public class BasePagerAdapter extends PagerAdapter {

From source file ca.appvelopers.mcgillmobile.ui.walkthrough.WalkthroughAdapter.java

/**
 * Initial walkthrough
 * @author Julien Guerinet
 * @version 2.1.0
 */
public class WalkthroughAdapter extends PagerAdapter {

From source file com.philliphsu.bottomsheetpickers.date.PagingMonthAdapter.java

/**
 * An adapter for a pager of {@link MonthView} items.
 */
class PagingMonthAdapter extends PagerAdapter implements OnDayClickListener {
    private static final String TAG = "SimpleMonthAdapter";

From source file at.alladin.rmbt.android.adapter.result.QoSCategoryPagerAdapter.java

public class QoSCategoryPagerAdapter extends PagerAdapter {

    public final static HashMap<QoSTestResultEnum, Integer> TITLE_MAP;

    static {
        TITLE_MAP = new HashMap<QoSTestResultEnum, Integer>();

From source file com.imagersliderlib.adapter.ImagePagerAdapter.java

public class ImagePagerAdapter extends PagerAdapter {
    private ArrayList<String> mImages;
    private LayoutInflater inflater;
    private Context mContext;

    // ImageLoader

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

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

From source file com.appsimobile.appsii.AbstractSidebarPagerAdapter.java

/**
 * A pager adapter that holds client state. This is modeled after
 * fragments and the FragmentStatePagerAdapter
 * Created by nick on 10/08/14.
 */
public abstract class AbstractSidebarPagerAdapter extends PagerAdapter {