SkillAgentSearch skills...

BeerSwipeRefresh

No description available

Install / Use

/learn @recruit-lifestyle/BeerSwipeRefresh
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

BeerSwipeRefreshLayout

Android Arsenal ![Release](https://img.shields.io/github/release/recruit-lifestyle/BeerSwipeRefresh.svg?label=maven version) License
This project aims to provide a reusable Swipe to Refresh widget for Android.

##Screenshots Watch YouTube video here.

<img src="./sc/sc1.png" width="200"> <img src="./sc/sc2.png" width="200"> <img src="./sc/sc3.png" width="200">

Requirements

Target Sdk Version : 21
Min Sdk Version : 19

##How to use

  1. Add this to your build.gradle.
repositories {
    maven {
        url "https://jitpack.io"
    }
}

dependencies {
  compile 'com.github.recruit-lifestyle:BeerSwipeRefresh:1.1'
}
  1. Add java com.list.view.amyu.beerswiperefreshlayout.BeerSwipeRefreshLayout , which has at least one AbsListView, to your layout XML file.
<jp.co.recruit_lifestyle.android.widget.BeerSwipeRefreshLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/main_swipe">

      <ListView
          android:id="@+id/main_list"
          android:layout_width="match_parent"
          android:layout_height="match_parent"/>

</jp.co.recruit_lifestyle.android.widget.BeerSwipeRefreshLayout>
  1. Add the function so that the your application knows when a user has completed a 'BeerSwipeRefreshLayout'.
mBeerSwipeRefreshLayout = (BeerSwipeRefreshLayout) findViewById(R.id.main_swipe);
mBeerSwipeRefreshLayout.setOnRefreshListener(new BeerSwipeRefreshLayout.OnRefreshListener() {
  @Override public void onRefresh() {
    // Do work to refresh the list here.
    new Task().execute();
  }
});

private class Task extends AsyncTask<Void, Void, String[]> {
  ...
  @Override protected void onPostExecute(String[] result) {
    // Call setRefreshing(false) when the list has been refreshed.
    mBeerSwipeRefreshLayout.setRefreshing(false);
    super.onPostExecute(result);
  }
}

Credits

BeerSwipeRefreshLayout is owned and maintained by RECRUIT LIFESTYLE CO., LTD.

BeerSwipeRefreshLayout was originally created by Yuki Mima

##License

Copyright 2015 RECRUIT LIFESTYLE CO., LTD.

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.
View on GitHub
GitHub Stars395
CategoryDevelopment
Updated7mo ago
Forks77

Languages

Java

Security Score

82/100

Audited on Aug 30, 2025

No findings