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.overtake.view.touchgallery.GalleryWidget.BasePagerAdapter.java

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

    protected final List<String> mResources;

From source file com.bilibili.lib.pageradapter.IDFragmentStatePagerAdapter.java

/**
 * The {@code position} of fragment sometimes is unreliable.
 * So this PagerAdapter implementation use item id instead of position to saving fragments.
 */
public abstract class IDFragmentStatePagerAdapter extends PagerAdapter {
    private static final String TAG = "ID-PagerAdapter";

From source file com.commonlib.view.indicator.FragmentListPageAdapter.java

/**
 * Implementation of {@link PagerAdapter} that uses a
 * {@link Fragment} to manage each page. This class also handles saving and
 * restoring of fragment's state.
 *
 * <p>

From source file com.androidinspain.deskclock.timer.TimerPagerAdapter.java

/**
 * This adapter produces a {@link TimerItemFragment} for each timer.
 */
class TimerPagerAdapter extends PagerAdapter implements TimerListener {

    private final FragmentManager mFragmentManager;

From source file com.inter.trade.ui.fragment.hotel.util.ru.truba.touchgallery.GalleryWidget.BasePagerAdapter.java

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

    protected final List<String> mResources;

From source file com.leychina.widget.tabindicator.view.indicator.FragmentListPageAdapter.java

/**
 * Implementation of {@link PagerAdapter} that uses a
 * {@link Fragment} to manage each page. This class also handles saving and
 * restoring of fragment's state.
 *
 * <p>

From source file com.chen.mail.utils.FragmentStatePagerAdapter2.java

/**
 * Forked from support lib's {@link FragmentStatePagerAdapter}, with some minor
 * changes that couldn't be accomplished through subclassing:
 * <ul>
 * <li>optionally disable stateful behavior when paging (controlled by {@link #mEnableSavedStates}),
 * for situations where state save/restore when paging is unnecessary</li>

From source file com.android.mail.utils.FragmentStatePagerAdapter2.java

/**
 * Forked from support lib's {@link FragmentStatePagerAdapter}, with some minor
 * changes that couldn't be accomplished through subclassing:
 * <ul>
 * <li>optionally disable stateful behavior when paging (controlled by {@link #mEnableSavedStates}),
 * for situations where state save/restore when paging is unnecessary</li>

From source file com.indeema.mail.utils.FragmentStatePagerAdapter2.java

/**
 * Forked from support lib's {@link FragmentStatePagerAdapter}, with some minor
 * changes that couldn't be accomplished through subclassing:
 * <ul>
 * <li>optionally disable stateful behavior when paging (controlled by {@link #mEnableSavedStates}),
 * for situations where state save/restore when paging is unnecessary</li>

From source file com.btmura.android.reddit.app.FragmentStateItemPagerAdapter.java

/**
 * A version of FragmentStatePagerAdapter that supports reorderable fragments.
 *
 * Copied from the support library and merged with modifications describe from the following issue
 * to support reordering of fragments:
 *