This repository has been archived by the owner on Jan 8, 2018. It is now read-only.
forked from chrisbanes/Android-PullToRefresh
-
Notifications
You must be signed in to change notification settings - Fork 82
Changelog
Chris Banes edited this page Aug 11, 2012
·
23 revisions
- Added new PullToRefreshScrollView with sample
- Fix Issue 101, which stopped onItemClick(…) working while refreshing
- Added new parameter to OnRefreshListener's. This is a breaking change and will require you to make (small) changes to your apps. See this sample for an example. I apologise for breaking the API, this should have been added from the start.
- Change Scroll Animation to 'overshoot'. Looks more natural.
- Added option to disable scrolling when the 'Empty View' is shown. (thanks to pboos)
- Sample Activities are now final. You should not be extending from them.
- We now build against API Level 8. The library still runs fine on v1.6 and above.
- New 'Disabled' Mode option which replaces the now deprecated
setPullToRefreshEnabled
method - Maven build fixes.
- Fix #79, a bug where PullToRefresh wouldn't work if the ListView had Header Views, and it was empty.
- New! Indicators that appear when a Pull-to-Refresh is available to the user. These are enabled by default, but can be disabled via XML or the
setShowIndicator()
method. - The Drawable used in the Header/Footer views has been changed. It is also completely customisable now via XML or the
setLoadingDrawable
method. See the GridView sample. - Cleaned up repository, moving content to Wiki pages.
- Fix Background colour when using custom colour with ListView (#67)
- Fix bug where the ListView would also scroll to the bottom/top after refreshing (#67)
- Ability to change mode via a method call (#10)
- Ability to make filtering of touch events more lenient (
setFilterTouchEvents
) - Fixed Copyright Notices on Source
- Fixed PullToRefreshWebView so that pulling from the bottom works (thanks nagoya0)
- Can now display last update label using then new
setLastUpdatedLabel()
method (thanks Peter Elliott) - Strings are now separate for Pulling Up and Pulling Up views, necessary for certain languages. There also new label setter methods so you change each one separately.
- Bug fixes, including #66, #62 and #64
- Fixes for #44, #48, #49
- Changed the custom attributes to be prefixed with 'ptr'. Should fixed compatibility with ActionBarSherlock v4.
- Fix bug where Pulling Up stopped working with ListView (#43)
- Fix bug where the Header/Footer's wouldn't be styled correctly on ListView (#42)
- Add new Listener, OnRefreshListener2 which allows you to listen for Pull Up/Downs separately.
- Properly fix not being able to Pull when the Empty View is show (#40)
- Fix Header View's being selectable (can cause FCs)
- Force ListView Footer to be the last visible item (#41)
- Fix not being able to Pull when the Empty View is show (#40)
- Add Japanese Translations (thanks to nagoya0)
- String Updates (thanks to Steve Lhomme)
- Add Missing Constructor (thanks to mcxiaoke)
- Fix bug where disabling scrolling has no effect when manual refreshing (thanks Maxim Galkin)
- New (better) way of handling Touch Events
- Add new way for PullToRefreshListView to work. Allows the user to scroll while it's refreshing.
- Fix Pull from Bottom happening when the view wasn't completely at the bottom
- Allow outside code to update the Widget to be refreshing (see
setRefreshing()
) - Fix Padding being doubled when added via XML
- New Translations