Double-Pull-Delegate
A grace double layout pull delegate for Android
Screenshots
Double-Pull-Delegate use Scroller and Delegate
Gradle
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven {
url 'https://jitpack.io'
}
}
}
Add the dependency:
dependencies {
compile 'com.github.ruzhan123:Double-Pull-Delegate:v1.0'
}
Usage
<zhan.library.widget.PullScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_root"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<zhan.library.widget.HeaderRelativeLayout
android:id="@+id/main_header"
android:layout_width="match_parent"
android:layout_height="275dp">
...
</zhan.library.widget.HeaderRelativeLayout>
<zhan.library.widget.BodyRelativeLayout
android:id="@+id/main_body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="200dp">
...
</zhan.library.widget.BodyRelativeLayout>
</RelativeLayout> </zhan.library.widget.PullScrollView>
Delegate
- ScrollerDelegate
- ScrollHeaderDelegate
- ScrollBodyDelegate
- ScrollViewDelegate
Implementing View
- HeaderRelativeLayout
- HeaderFrameLayout
- HeaderLinearLayout
- BodyRelativeLayout
- BodyFrameLayout
- BodyLinearLayout
- PullScrollView
Custom
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 - [email protected]
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.