Giter Club home page Giter Club logo

android-pullrefreshlayout's Introduction

Android-PullRefreshLayout

基于SwipeRefreshLayout下拉刷新、上拉加载。支持所有的AbsListView、RecycleView

#特点

  • 在 layout 中使用,支持 AbsListView 所有的xml属性
  • 支持自动下拉刷新,什么用呢?比如进入界面时,只需要调用 autoRefresh() 方法即可,同时下拉刷新回调函数将会被调用。
  • 上拉加载支持自定义 View 或设置加载文字、动画
  • 轻松设置 Adapter 空数据视图,默认为 TextView 支持更文字,也可自定义 View
  • 对于简单的界面,如只有 ListView 可以继承 app 包中 Fragment 轻松搞定

#效果图

#使用 仔细看 listSelector 属性,效果见 sample

<com.mylhyl.prlayout.SwipeRefreshListView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/swipeRefresh"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:listSelector="@drawable/selector_list"
    tools:context=".app.ListViewXmlFragment" />

设置上拉加载,更多方法见 IFooterLayout

       IFooterLayout footerLayout = swipeRefreshListView.getFooterLayout();
       footerLayout.setFooterText("set自定义加载");
       footerLayout.setIndeterminateDrawable(getResources().getDrawable(R.drawable.footer_progressbar));

自定义adapter空数据视图

       ImageView emptyView = new ImageView(getContext());
       emptyView.setImageResource(R.mipmap.empty);
       swipeRefreshGridView.setEmptyView(emptyView);

        swipeRefreshListView.setEmptyText("数据呢?");

#使用Gradle构建时添加一下依赖即可:

compile 'com.mylhyl:pullrefreshlayout:1.0.0'

android-pullrefreshlayout's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.