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

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

Introduction

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

Usage

From source file com.wedo.library.widget.ViewPager.java

/**
 * {@link ViewPager} extension with support for horizontally scrolling an
 * embedded {@link WebView}
 */
public class ViewPager extends android.support.v4.view.ViewPager {

From source file com.chalilayang.test.customview.springindicator.viewpager.ScrollerViewPager.java

/**
 * Created by chenupt@gmail.com on 2015/3/7.
 * Description TODO
 */
public class ScrollerViewPager extends ViewPager {

From source file com.stfalcon.frescoimageviewer.MultiTouchViewPager.java

class MultiTouchViewPager extends ViewPager {

    private boolean isDisallowIntercept, isScrolled = true;

    public MultiTouchViewPager(Context context) {
        super(context);

From source file com.abiansoftware.lib.reader.UninterceptableViewPager.java

public class UninterceptableViewPager extends ViewPager {
    public UninterceptableViewPager(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public boolean onInterceptTouchEvent(MotionEvent ev) {

From source file com.android.gpstest.view.ViewPagerMapBevelScroll.java

/**
 * Extension of ViewPager that allows the user to move the map
 * inside the fragment, but still supports swiping to the
 * next fragment via "bezel swipe" (i.e., swiping from the edge)
 */
public class ViewPagerMapBevelScroll extends ViewPager {

From source file com.ushahidi.platform.mobile.app.presentation.view.ui.widget.ScrollConfigurableViewPager.java

/**
 * Custom view pager to enable the ability to enable and disable scroll on the view pager
 *
 * @author Ushahidi Team <team@ushahidi.com>
 */
public class ScrollConfigurableViewPager extends ViewPager {

From source file com.shadowmaps.example.view.ViewPagerMapBevelScroll.java

/**
 * Extension of ViewPager that allows the user to move the map
 * inside the fragment, but still supports swiping to the
 * next fragment via "bezel swipe" (i.e., swiping from the edge)
 */
public class ViewPagerMapBevelScroll extends ViewPager {

From source file com.android.messaging.ui.PagingAwareViewPager.java

/**
 * A simple extension on the standard ViewPager which lets you turn paging on/off.
 */
public class PagingAwareViewPager extends ViewPager {
    private boolean mPagingEnabled = true;

From source file com.bjgas.common.DirectionalViewPager.java

/**
 * Uses a combination of a PageTransformer and onTouchEvent to create the
 * illusion of a vertically scrolling ViewPager.
 * 
 * Requires API 11+
 * 

From source file com.jungle.widgets.view.VertWrapContentViewPager.java

public class VertWrapContentViewPager extends ViewPager {

    public static final int TAG_POSITION = "tag_position".hashCode();

    private boolean mScrollEnable = true;