# Double-Pull-Delegate
**Repository Path**: deviche/Double-Pull-Delegate
## Basic Information
- **Project Name**: Double-Pull-Delegate
- **Description**: A grace double layout pull delegate for Android
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2018-11-14
- **Last Updated**: 2024-11-26
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
Double-Pull-Delegate
===============
A grace double layout pull delegate for Android
Screenshots
===============

Double-Pull-Delegate use **Scroller** and **Delegate**
[](https://jitpack.io/#ruzhan123/Double-Pull-Delegate)
Gradle
------
Add it in your root build.gradle at the end of repositories:
```java
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
Add the dependency:
```java
dependencies {
compile 'com.github.ruzhan123:Double-Pull-Delegate:v1.0'
}
```
Usage
------
```xml
...
...
```
Delegate
------
Implementing View
------
Custom
------
```java
public class HeaderRelativeLayout extends RelativeLayout {
private ScrollHeaderDelegate mScrollHeaderDelegate;
public HeaderRelativeLayout(Context context) {
super(context);
init();
}
public HeaderRelativeLayout(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public HeaderRelativeLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
mScrollHeaderDelegate = new ScrollHeaderDelegate(this);
}
@Override
public void computeScroll() {
mScrollHeaderDelegate.computeScroll();
}
public void setScrollShow(boolean isScrollShow) {
mScrollHeaderDelegate.setScrollShow(isScrollShow);
}
public boolean isScrollShow() {
return mScrollHeaderDelegate.isScrollShow();
}
public void scrollShow() {
mScrollHeaderDelegate.scrollShow();
}
public void setDuration(int duration) {
mScrollHeaderDelegate.setDuration(duration);
}
}
...
```
Developed by
-------
ruzhan - dev19921116@gmail.com
License
-------
Copyright 2017 ruzhan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.