81 Star 864 Fork 201

树朾 / SmartRefreshLayout

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README_EN.md 12.14 KB
一键复制 编辑 原始数据 按行查看 历史
树朾 提交于 2020-05-31 23:54 . 2020-5-26 修复 finishLoadMore 中途

SmartRefreshLayout

License Arsenal JCenter MinSdk Methods

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.

Features

  • 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
  • Support HorizontalRefresh

Gateway

Demo

Download APK-Demo

Practical

Weibo FeedList
Repast Profile

Style

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.

Usage

1.Add a gradle dependency.

【V2.0.0】 main change is to subcontract SmartRefreshLayout to reduce unnecessary dependencies and avoid code redundancy. welcome to experience.

implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.3'
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.3'  //If you use the special Header

If you use AndroidX, add it to gradle.properties

android.useAndroidX=true
android.enableJetifier=true

2.Add SmartRefreshLayout in the layout xml.

<?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>

3.Coding in the Activity or Fragment.

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);
    }
});

Use the specified Header and Footer

1.Global settings

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.

2.Specified in the XML layout file

<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.

3.Specified in the java code

final RefreshLayout refreshLayout = (RefreshLayout) findViewById(R.id.refreshLayout);
refreshLayout.setRefreshHeader(new MaterialHeader(this).setShowBezierWave(true));
refreshLayout.setRefreshFooter(new BallPulseFooter(this).setSpinnerStyle(SpinnerStyle.Scale));

ProGuard

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.

Donate

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

blogroll

github/Loror
github/faith-hb/WidgetCase
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

Discuss

Contact me: scwang90@hotmail.com

Thanks

SwipeRefreshLayout
Ultra-Pull-To-Refresh
TwinklingRefreshLayout
BeautifulRefreshLayout

Other Works

MultiWaveHeader

License

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.
Android
1
https://gitee.com/scwang90/SmartRefreshLayout.git
git@gitee.com:scwang90/SmartRefreshLayout.git
scwang90
SmartRefreshLayout
SmartRefreshLayout
release

搜索帮助