From 3f05ec4ba5f50189ab34fda166a037d73925c2cf Mon Sep 17 00:00:00 2001 From: Chris Banes Date: Fri, 23 Dec 2011 13:50:40 +0000 Subject: [PATCH] Update README --- README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bbad7a3d4..d34ec0bc0 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,13 @@ This project aims to provide a reusable Pull to Refresh widget for Android. It i ## Features - * No longer uses a (slow) OnScrollListener - * No longer shows the Tap to Refresh view when the AdapterView can not fill itself. + * Supports both Pulling Down from the top, and Pulling Up from the bottom * Animated Scrolling for all devices (Tested on 1.6+) * Works for all AdapterViews. I've implemented both ListView and GridView. * Works with ExpandableListView (thanks to Stefano Dacchille) * Maven Support (thanks to Stefano Dacchille) - + * No longer uses a (slow) OnScrollListener + * No longer shows the Tap to Refresh view when the AdapterView can not fill itself. Repository at . @@ -69,6 +69,20 @@ private class GetDataTask extends AsyncTask { } ``` + +### Pull Up to Refresh + +By default this library is set to Pull Down to Refresh, but if you instead to Pull Up to Refresh you can do so via XML: + +``` xml + +``` + ## Acknowledgments * [Stefano Dacchille](https://github.com/stefanodacchille)