In Android applications such as Twitter (official app), when you encounter a ListView, you can pull it down (and it will bounce back when released) to refresh the content.

I wonder what is the best way, in your opinion, to implement that?

Some possibilities I could think of:

  1. An item on top of the ListView - however I don't think scrolling back to item position 1 (0-based) with animation on the ListView is an easy task.
  2. Another view outside the ListView - but I need to take care of moving the ListView position down when it is pulled, and I'm not sure if we can detect if the drag-touches to the ListView still really scroll the items on the ListView.

Any recommendations?

P.S. I wonder when the official Twitter app source code is released. It has been mentioned that it will be released, but 6 months has passed and we haven't heard about it since then.

link|improve this question

77% accept rate
Is this functionality can be implemented in a dynamically created TableLayout. Please Help..... – AB1209 Dec 28 '11 at 13:53
feedback

7 Answers

I've made an attempt to implement a pull to refresh component, it's far from complete but demonstrates a possible implementation, https://github.com/johannilsson/android-pulltorefresh.

Main logic is implemented in PullToRefreshListView that extends ListView. Internally it controls the scrolling of a header view using smoothScrollBy (API Level 8). The widget is now updated with support for 1.5 and later, please read the README for 1.5 support though.

In your layouts you simply add it like this.

<com.markupartist.android.widget.PullToRefreshListView
    android:id="@+id/android:list"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    />
link|improve this answer
2  
Hi johan, I have downloaded your sample code. It is worked in android 2.2 device but not worked in 2.1 device. I think because it used smoothScrollBy method which only available in 2.2 or later, is correct? And do you have any idea to implement this effect into 2.1 or earlier version? Thanks – user577394 Jan 16 '11 at 15:18
Yes that's correct as I stated in the answer smoothScrollBy was introduces in API Level 8 (2.2). I haven't figured out a proper way to implement it for other versions yet, but it guess it should be possible to port the implementation of smoothScrollBy but I guess that discussion should be kept at the project site and not on stack overflow? – johan Jan 16 '11 at 18:09
Is it on purpose that the id is @+id/android:list and not @android:id/list, it looks weird? The project throws an inflation error here on my side, I'm currently checking on that... – Mathias Lin May 17 '11 at 9:28
No it works fine with just @id/android:list too, it behaves just as a normal ListView would do. Errors like that is most likely because it's not set up as a library project. – johan May 17 '11 at 14:51
2  
This is the best library for pull to refresh I have found..github.com/chrisbanes/Android-PullToRefresh. It works with ListViews, GridViews and Webviews. Also has Pull up to refresh pattern implemented. – gaurav Apr 1 at 23:07
show 4 more comments
feedback

I've also implemented a robust, open source, easy to use and highly customizable PullToRefresh library for Android. You can replace your ListView with the PullToRefreshListView as described in the documentation on the project page.

https://github.com/erikwt/PullToRefresh-ListView

link|improve this answer
I tried all of the implementations listed here and yours is the best, in terms of a simple/pure/smooth pull to refresh implementation (no tap to refresh weirdness like Johan's). Thanks! – Guddie Mar 16 at 16:13
Looks very promising. I am going to integrate it soon. – Prakash Nadar Mar 20 at 0:05
Can this replace a standard ListView to work with ListActivity, ListFragment and so on? – David Apr 8 at 2:00
Yes, just give the PullToRefreshListView the right id. In XML: android:id="@android:id/list" – Erik Apr 8 at 11:21
feedback

I've written a pull to refresh component here: https://github.com/guillep/PullToRefresh It works event if the list does not have items, and I've tested it on >=1.6 android phones.

Any suggestion or improvement is appreciated :)

link|improve this answer
Pls, add some examples on how to use your component. – Mike Bevz Jan 2 at 18:16
Could not get it to work. – Prakash Nadar Mar 20 at 0:01
feedback

Not sure if this would help, but this is the Pull-to-refresh code that's used on iOS devices like Twitter, Facebook, etc.

https://github.com/enormego/EGOTableViewPullRefresh

Implementation:

https://github.com/enormego/EGOTableViewPullRefresh/blob/master/EGOTableViewPullRefresh/Classes/View/EGORefreshTableHeaderView.m

Perhaps you could re-use some code for Android if you're familiar enough with Objective-C and the Cocoa-Touch Framework.

link|improve this answer
feedback

Hope this help!

link|improve this answer
feedback

Johan used the first method, and I decided to try it using the second method. You can find the code here: https://github.com/timahoney/Android-Pull-To-Refresh/

It's not complete, and I wouldn't use it in production code, but it might help.

link|improve this answer
feedback

If you don't want your program to look like an iPhone program that is force fitted into Android, aim for a more native look and feel and do something similar to Gingerbread:

alt text

link|improve this answer
Can you please explain more... the image doesn't show much – Rob Feb 25 '11 at 18:11
1  
@Rob: I meant having the orange shadow on the top of the list when you overpull, instead of having the list bounce back like on iPhone. This is meant as a comment (not answer), but comments can't have images. – Lie Ryan Feb 26 '11 at 12:42
Ahh, sorry, great Idea. I haven't played with gingerbread yet, so hadn't seen the effect. Still waiting for google to roll it to the nexus one. – Rob Mar 1 '11 at 12:00
5  
I have Gingerbread and the orange glow works great when a list is static. But the pull-down-refresh is a great UI mecanism to refresh a dynamic list. Although it is prevalent in iOS world, it's a UI trick that doesn't feel wierd in Android ecosystem. I strongly suggest you check it out in the official Twitter app. :) – Thierry-Dimitri Roy Apr 18 '11 at 15:19
The native behaviour here is to indicate that you have reached the end of a list. Taking this, and performing a refresh is identically non native as you are not doing what the platform does. This means you are more likely to surprise the user. I certainly wouldn't expect nor want a refresh just because I got to the end of a list. Pull down to refresh is a lot more intuitive and clear. And as the native twitter app uses it I think its fair to say it is a UI concept a large amount of people are familiar with. – steprobe Apr 20 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.