English | 中文
As the name says, SmartRefreshLayout is a "smart" refresh layout,Because of its "smart", it does not just support all the View as other refresh layouts said, but also support multi-layered nested view structures.
In addition to "smart", SmartRefreshLayout also has a lot of features.
It extends from ViewGroup rather than the other FrameLayout or LinearLayout, improving performance.
It absorbs the advantages of various refresh layout in fashion now,Including Google official SwipeRefreshLayout、TwinklingRefreshLayout 、android-Ultra-Pull-To-Refresh。Also integrates various cool Header and Footer.
SmartRefreshLayout's goal is to build a strong, stable and mature refresh layout framework, and integrate all kinds of cool and diverse, practical, beautiful Header and Footer.
- Support all of the View (AbsListView RecyclerView WebView... View) and multi-layered nested view structures.
- Support custom Header and Footer, and has integrated a lot of cool Header and Footer.
- Support synchronous scrolling with ListView and NestedScrolling width RecyclerView、AppBarLayout、CoordinatorLayout.
- Support preview in the Android Studio xml editor.
- Support three ways (default、xml、java) to set the Header and Footer.
- Support automatic refresh, automatic loading (automatic detection list, scroll to the bottom without having to manually pull).
- Support generic refresh listener (OnRefreshListener) and more detailed scrolling listener (OnMultiPurposeListener).
- Support custom rebound animation interpolator, to achieve a variety of cool animation effects.
- Support set the theme to fit any scene of App, won't appear cool but very awkward situation.
- Support for setting a variety of transformations (Translation, stretching, behind the fixed, top fixed, full screen) for Header and Footer.
- Support content size adaptation (wrap_content).
- Support rewrite and extension, internal implementation without private methods and fields.
- Support cross-border rebound (Listview、RecyclerView、ScrollView、WebView...View).
The two above is my own implementation of the Header, the design comes from: Refresh-your-delivery,Dropbox-Refresh
TwinklingRefreshLayout,Pull Down To Refresh
Yalantis/Phoenix,Yalantis/Taurus
FunGame/BattleCity,FunGame/HitBlock
WaveSwipeRefreshLayout,MaterialHeader
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.
compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.0.2-alpha-5'
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.0.2-alpha-5'//If you use the special Header
<?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).setSpinnerStyle(SpinnerStyle.Translate);
}
});
refreshLayout.setOnLoadmoreListener(new OnLoadmoreListener() {
@Override
public void onLoadmore(RefreshLayout refreshlayout) {
refreshlayout.finishLoadmore(2000).setSpinnerStyle(SpinnerStyle.Translate);
}
});
public class App extends Application {
public void onCreate() {
super.onCreate();
SmartRefreshLayout.setDefaultRefreshHeaderCreater(new DefaultRefreshHeaderCreater() {
@Override
public RefreshHeader createRefreshHeader(Context context, RefreshLayout layout) {
return new ClassicsHeader(context).setSpinnerStyle(SpinnerStyle.Translate);
}
});
SmartRefreshLayout.setDefaultRefreshFooterCreater(new DefaultRefreshFooterCreater() {
@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/padding_common"
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 scan the qr code below to ask the author to drink a cup of coffee.
If in the donation message note name, will be record to the list
Donation list
Contact me: [email protected] QQ group: 477963933
The answers to the join the group can be found in this document~
SwipeRefreshLayout
TwinklingRefreshLayout
android-Ultra-Pull-To-Refresh
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.