Popularity
3.1
Stable
Activity
0.0
Stable
145
6
30

Code Quality Rank: L5
Programming language: Java
License: Apache License 2.0
Tags: Layout Widget    

ScrollDownLayout alternatives and similar packages

Based on the "Layout Widget" category.
Alternatively, view ScrollDownLayout alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ScrollDownLayout or a related project?

Add another 'Layout Widget' Package

README

ScrollDownLayout

Summary 概要

A custom Android Widget,support u use ViewPager in a ScrollView or ListView。
帮助你能够在ScrollView或者ListView里面使用ViewPager,支持手势下滑退出页面

Gif & Usage scenario Gif动画和使用场景

1 2

Video 视频

Youtube

Demo 例子

Download Demo

Usage 使用方法

Step 1

Gradle

dependencies {
    compile 'com.ted.coder.sdlayout:library:1.0.2'
}

Step 2

Java Code

    {
        mScrollDownLayout.setMinOffset(0);
        mScrollDownLayout.setMaxOffset(800);
        mScrollDownLayout.setExitOffset(1674);
        mScrollDownLayout.setToOpen();
        mScrollDownLayout.setIsSupportExit(true);
        mScrollDownLayout.setAllowHorizontalScroll(true);
        mScrollDownLayout.setOnScrollChangedListener(mOnScrollChangedListener);
    }