Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/recruit-lifestyle/BeerSwipeRefresh
https://github.com/recruit-lifestyle/BeerSwipeRefresh
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/recruit-lifestyle/BeerSwipeRefresh
- Owner: recruit-lifestyle
- License: apache-2.0
- Created: 2015-07-17T05:14:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-18T08:32:48.000Z (over 9 years ago)
- Last Synced: 2024-08-09T13:15:59.914Z (5 months ago)
- Language: Java
- Homepage: http://engineer.recruit-lifestyle.co.jp/techblog/2015-07-29-beer-swipe-refresh-layout/
- Size: 8.19 MB
- Stars: 397
- Watchers: 27
- Forks: 77
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-android-ui - https://github.com/recruit-lifestyle/BeerSwipeRefresh
README
# BeerSwipeRefreshLayout
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-BeerSwipeRefreshLayout-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/2228)
[![Release](https://img.shields.io/github/release/recruit-lifestyle/BeerSwipeRefresh.svg?label=maven version)](https://github.com/recruit-lifestyle/BeerSwipeRefresh)
[![License](https://img.shields.io/hexpm/l/plug.svg)]()
This project aims to provide a reusable Swipe to Refresh widget for Android.##Screenshots
*Watch YouTube video [here](https://www.youtube.com/watch?v=ZIBP56GboX0).*
![](./sc/animation_beer.gif)
## Requirements
Target Sdk Version : 21
Min Sdk Version : 19##How to use
1) Add this to your **build.gradle**.
```java
repositories {
maven {
url "https://jitpack.io"
}
}dependencies {
compile 'com.github.recruit-lifestyle:BeerSwipeRefresh:1.1'
}
```2) Add ```java com.list.view.amyu.beerswiperefreshlayout.BeerSwipeRefreshLayout``` , which has at least one AbsListView, to your layout XML file.
```java
```
3) Add the function so that the your application knows when a user has completed a 'BeerSwipeRefreshLayout'.
```java
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 {
...
@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.](http://www.recruit-lifestyle.co.jp/)
BeerSwipeRefreshLayout was originally created by [Yuki Mima](https://github.com/amyu)
##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 athttp://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.