Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Is this functionality can be implemented in a dynamically created TableLayout. Please Help..... – AB1209 Dec 28 '11 at 13:53
github.com/fruitranger/PulltorefreshListView is a another implementation of mine. Smooth and multi-touch support. – Changwei Yao Jul 16 '12 at 15:03
3  
Related: “Pull-to-refresh”: an anti UI pattern on Android is an article arguing that this UI isn't something that should be used on Android and sparked a lot of discussion about its appropriateness. – blahdiblah Jan 30 at 20:51

9 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"
    />
share|improve this answer
3  
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
8  
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 '12 at 23:07
show 5 more comments

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

share|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! – Gady Mar 16 '12 at 16:13
Looks very promising. I am going to integrate it soon. – Prakash Nadar Mar 20 '12 at 0:05
1  
Can this replace a standard ListView to work with ListActivity, ListFragment and so on? – David Cesarino Apr 8 '12 at 2:00
Yes, just give the PullToRefreshListView the right id. In XML: android:id="@android:id/list" – Erik Apr 8 '12 at 11:21
   
works like a charm – 2cupsOfTech Jul 9 '12 at 8:29
show 5 more comments

In this link you can check a fork of the famous pullToRefresh view that have new interesting implementations like pullTorRefreshWebView or pullToRefreshGridView or hability to put a pullToRefresh on the button edge of the list.

https://github.com/chrisbanes/Android-PullToRefresh

And the best of it is that work perfect in Android 4.1 (the normal pullToRefresh doesn't works )

share|improve this answer
This is the perfect implementation of Pull to Refresh :D – Shehabix Dec 30 '12 at 23:41
1  
A big comment at the top of the readme indicates: THIS PROJECT IS NO LONGER BEING MAINTAINED. Anyway, this lib is the best one I have seen so far! Great work! – Milton May 9 at 13:10

I have very easy way to do this but now sure its the foolproof way There is my code PullDownListView.java

package com.myproject.widgets;

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.AbsListView;
import android.widget.AbsListView.OnScrollListener;
import android.widget.ListView;

/**
 * @author Pushpan
 * @date Nov 27, 2012
 **/
public class PullDownListView extends ListView implements OnScrollListener {

    private ListViewTouchEventListener mTouchListener;
    private boolean pulledDown;

    public PullDownListView(Context context) {
        super(context);
        init();
    }

    public PullDownListView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public PullDownListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init();
    }

    private void init() {
        setOnScrollListener(this);
    }

    private float lastY;

    @Override
    public boolean dispatchTouchEvent(MotionEvent ev) {
        if (ev.getAction() == MotionEvent.ACTION_DOWN) {
            lastY = ev.getRawY();
        } else if (ev.getAction() == MotionEvent.ACTION_MOVE) {
            float newY = ev.getRawY();
            setPulledDown((newY - lastY) > 0);
            postDelayed(new Runnable() {
                @Override
                public void run() {
                    if (isPulledDown()) {
                        if (mTouchListener != null) {
                            mTouchListener.onListViewPulledDown();
                            setPulledDown(false);
                        }
                    }
                }
            }, 400);
            lastY = newY;
        } else if (ev.getAction() == MotionEvent.ACTION_UP) {
            lastY = 0;
        }
        return super.dispatchTouchEvent(ev);
    }

    @Override
    public void onScroll(AbsListView view, int firstVisibleItem,
            int visibleItemCount, int totalItemCount) {
        setPulledDown(false);
    }

    @Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
    }

    public interface ListViewTouchEventListener {
        public void onListViewPulledDown();
    }

    public void setListViewTouchListener(
            ListViewTouchEventListener touchListener) {
        this.mTouchListener = touchListener;
    }

    public ListViewTouchEventListener getListViewTouchListener() {
        return mTouchListener;
    }

    public boolean isPulledDown() {
        return pulledDown;
    }

    public void setPulledDown(boolean pulledDown) {
        this.pulledDown = pulledDown;
    }
}

You just need to implement ListViewTouchEventListener on your activity where you want to use this ListView and set the listener

I have it implemented in PullDownListViewActivity

package com.myproject.activities;

import android.app.Activity;
import android.os.Bundle;

/**
 * @author Pushpan
 *
 */
public class PullDownListViewActivity extends Activity implements ListViewTouchEventListener {

    private PullDownListView listView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        listView = new PullDownListView(this);
        setContentView(listView);
        listView.setListViewTouchListener(this);

        //setItems in listview
    }

    public void onListViewPulledDown(){
        Log.("PullDownListViewActivity", "ListView pulled down");
    }
}

It works for me :)

share|improve this answer
Thanks it works for me but is there a way to detect you pull the list down from the top side? – Hắc Huyền Minh Jan 21 at 4:07

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 :)

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

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

share|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 '12 at 17:58

Note there are UX issues to content with when implementing on Android and WP.

https://plus.google.com/109453683460749241197/posts/eqYxXR8L4eb

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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