English | 中文
SmartRefreshLayout's goal is to build a strong, stable and mature pull-down refresh layout framework, and to integrate all kinds of cool, diverse, practical and beautiful Headers and Footers.
- Support multi-touch.
- Support multi-layered nested view structures.
- Support all the Views(AbsListView、RecyclerView、WebView....View)
- Support customizing Headers and Footers, and has integrated a lot of cool Headers and Footers.
- Support synchronous scrolling with ListView and NestedScrolling with CoordinatorLayout.
- Support automatically refresh, automatically pull-up loading (automatically detect list inertance and scroll to the bottom without having to manually pull).
- Support customizing rebound animation interpolator, to achieve a variety of cool animation effects.
- Support setting a theme to fit any scene of App, it won't appear a cool but very awkward situation.
- Support setting a variety of transformations (Translation, stretching, behind fixed, top fixed, full screen view) for Headers and Footers.
- Support rewrite and extension, internal implementation without private methods and fields.
- Support automatically cross-border rebound for all rolling Views (Listview、RecyclerView、ScrollView、WebView...View).
- Support the interchange of Header and Footer
- Support AndroidX
FeedList | |
---|---|
Repast | Profile |
---|---|
Style | Delivery | DropBox |
---|---|---|
Demo | ||
Design | Refresh-your-delivery | DropBox-Refresh |
The two above headers are implemented by myself, The following headers are collected and optimized from excellent Headers on github
Style | BezierRadar | BezierCircle |
---|---|---|
Demo | ||
From | TwinklingRefreshLayout | Pull Down To Refresh |
Style | FlyRefresh | Classics |
---|---|---|
Demo | ||
From | FlyRefresh | ClassicsHeader |
Style | Phoenix | Taurus |
---|---|---|
Demo | ||
From | Yalantis/Phoenix | Yalantis/Taurus |
Style | BattleCity | HitBlock |
---|---|---|
Demo | ||
From | FunGame/BattleCity | FunGame/HitBlock |
Style | WaveSwipe | Material |
---|---|---|
Demo | ||
From | WaveSwipeRefreshLayout | MaterialHeader |
Style | StoreHouse | WaterDrop |
---|---|---|
Demo | ||
From | Ultra-Pull-To-Refresh | WaterDrop |
See so many cool headers, is not it feel great? At this point you may be worried that so many headers together, but usually only use one, is not to introduce a lot of useless code and resources?
Please rest assured that I have divided it into three packages, when used to reference their own it!
- SmartRefreshLayout: The core to realize,Bring ClassicsHeader and BezierRadarHeader.
- SmartRefreshHeader: Integration of various kinds of the Header.
- SmartRefreshFooter: Integration of various kinds of the Footer.
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-28'
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-28'//If you use the special Header
implementation 'com.android.support:appcompat-v7:25.3.1'
//androidx version
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-andx-11'
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-andx-11'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
<?xml version="1.0" encoding="utf-8"?>
<com.scwang.smartrefresh.layout.SmartRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/refreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"
android:background="#fff" />
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
RefreshLayout refreshLayout = (RefreshLayout)findViewById(R.id.refreshLayout);
refreshLayout.setOnRefreshListener(new OnRefreshListener() {
@Override
public void onRefresh(RefreshLayout refreshlayout) {
refreshlayout.finishRefresh(2000);
}
});
refreshLayout.setOnLoadMoreListener(new OnLoadMoreListener() {
@Override
public void onLoadMore(RefreshLayout refreshlayout) {
refreshlayout.finishLoadMore(2000);
}
});
public class App extends Application {
public void onCreate() {
super.onCreate();
SmartRefreshLayout.setDefaultRefreshHeaderCreator(new DefaultRefreshHeaderCreator() {
@Override
public RefreshHeader createRefreshHeader(Context context, RefreshLayout layout) {
return new ClassicsHeader(context).setSpinnerStyle(SpinnerStyle.Translate);
}
});
SmartRefreshLayout.setDefaultRefreshFooterCreator(new DefaultRefreshFooterCreator() {
@Override
public RefreshFooter createRefreshFooter(Context context, RefreshLayout layout) {
return new ClassicsFooter(context).setSpinnerStyle(SpinnerStyle.Translate);
}
});
}
}
Note: this method is the lowest priority.
<com.scwang.smartrefresh.layout.SmartRefreshLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/refreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#444444"
app:srlPrimaryColor="#444444"
app:srlAccentColor="@android:color/white"
app:srlEnablePreviewInEditMode="true">
<!--srlAccentColor and srlPrimaryColor, Will change the Header and Footer theme colors-->
<!--srlEnablePreviewInEditMode, Can open and close the preview function-->
<com.scwang.smartrefresh.layout.header.ClassicsHeader
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/dimenPaddingCommon"
android:background="@android:color/white"
android:text="@string/description_define_in_xml"/>
<com.scwang.smartrefresh.layout.footer.ClassicsFooter
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
Note: this method of priority is medium。When using this method, the Android Studio will have preview effect, the following figure:
But don't worry, just a preview effect, run only the drop-down will appear.
final RefreshLayout refreshLayout = (RefreshLayout) findViewById(R.id.refreshLayout);
refreshLayout.setRefreshHeader(new MaterialHeader(this).setShowBezierWave(true));
refreshLayout.setRefreshFooter(new BallPulseFooter(this).setSpinnerStyle(SpinnerStyle.Scale));
This library does't use serialization and deserialization, JNI, reflection, so there is no need to add confusing filtering code, and it has been confusing tests pass, if you after the confusion in the use of the project appear problem, please inform me.
If you like this library's design, feel it help to you, you can point the upper right corner "Star" support Thank you! ^ _ ^ You can also click the PayPal below to ask the author to drink a cup of coffee.
If in the donation message note name, it will be record to the list
Donation list
github/Bamboy120315/Freedom
github/TommyLemon/APIJSON
github/dengyuhan
github/zrp2017
github/fly803/BaseProject
github/razerdp
github/SuperChenC/s-mvp
github/KingJA/LoadSir
github/jianshijiuyou
github/zxy198717
github/addappcn
github/RainliFu
github/sugarya
github/stormzhang
Contact me: scwang90@hotmail.com
SwipeRefreshLayout
Ultra-Pull-To-Refresh
TwinklingRefreshLayout
BeautifulRefreshLayout
Copyright 2017 scwang90
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.