Swipe refresh to be called only when user swipes for it, not when user reaches top of list

4k Views Asked by At

https://github.com/googlesamples/android-SwipeRefreshLayoutBasic

Referring to the sample above. The swipe refresh is calling when user scrolls up reaches top of the list. What i want is to call swipe refresh only when user specially swipes for it. Not calling swipe refresh when user is scrolling up and reached top end.

When i am using the lib below, i get what i want. But i m facing some issues with this lib so i didnt want to use it. github.com/baoyongzhang/android-PullRefreshLayout

Here is the video clip of what i dont want: https://drive.google.com/file/d/0By2g3SV1qz5TUFdZZ1FUNmxzU1E/view?usp=sharing

4

There are 4 best solutions below

7
On
        swipe.setOnRefreshListener(
            new SwipeRefreshLayout.OnRefreshListener() {
                @Override
                public void onRefresh() {

                    Toast.makeText(getContext(), "List Refreshed", Toast.LENGTH_SHORT).show();

                    swipe.setRefreshing(false); //Refresh view Close
                }
            }
    );
1
On

now begin with the xml

<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/contact_swipe_refresh"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:id="@+id/contact_listView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></ListView>
</android.support.v4.widget.SwipeRefreshLayout>

in the above code there is a listview inside swipeRefreshLayout, put it inside the layour of your activity

then in your activity declare it by this just inside the activity class

SwipeRefreshLayout swipeRefreshLayout;
ListView listView;

then inside of onCreate method assign the xml code to it

     swipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.contact_swipe_refresh);
 listView = (ListView) findViewById(R.id.contact_listView);

then put your adapter to listview and set onrefreshlistener to the swiperefreshlayout by this

swipeRefreshLayout.setOnRefreshListener(new 

    SwipeRefreshLayout.OnRefreshListener() {
                @Override
                public void onRefresh() {
                   //call a method here which make a webservice call or what ever you are using to put data inside the listview then set adapter and call  

swipeRefreshLayout.setRefreshing(false);
                    }
                }
            });
0
On
        listView.setOnScrollListener(new AbsListView.OnScrollListener() {

        @Override
        public void onScrollStateChanged(AbsListView view, int scrollState) {
            switch (scrollState) {
                case SCROLL_STATE_IDLE:
                    //scroll was stopped, let's show search bar again
                    break;
                case SCROLL_STATE_TOUCH_SCROLL:
                    //user is scrolling, let's hide search bar
                    break;
            }
        }
        @Override
        public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
            if (firstVisibleItem > 0) {
                //user scrolled down, first element is hidden
                //you can add the swipe trigger statement anywhere
            }
            else {//else
            }
        }
    });
0
On

Here, I tried to solve your problem

activity_main.xml

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swipe_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/infoText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:gravity="center"
                android:text="Pull Down to Refresh" />

            <ListView
                android:id="@+id/listView"
                android:layout_width="match_parent"
                android:layout_height="424dp"
                android:layout_marginTop="10dp" >
            </ListView>
        </LinearLayout>

    </ScrollView>

</android.support.v4.widget.SwipeRefreshLayout>

MainActivity.java

public class MainActivity extends Activity implements OnRefreshListener {

    private SwipeRefreshLayout swipeView;

    private ListView listView;
    private ArrayAdapter<String> adapter;

    private String[] LIST_ITEM_TEXT_CITIES = { "Los Angeles", "Chicago",
            "Indianapolis", "San Francisco", "Oklahoma City", "Washington" };

    private String[] LIST_ITEM_TEXT_MORE_CITIES = { "Phoenix", "San Antonio",
            "San Jose", "Nashville", "Las Vegas", "Virginia Beach" };

    private List<String> cityList;

    // variable to toggle city values on refresh
    boolean refreshToggle = true;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        swipeView = (SwipeRefreshLayout) findViewById(R.id.swipe_view);
        swipeView.setOnRefreshListener(this);
        swipeView.setColorSchemeColors(Color.RED, Color.BLUE, Color.YELLOW,
                Color.CYAN, Color.BLACK);
        swipeView.setDistanceToTriggerSync(20);// in dips
        swipeView.setSize(SwipeRefreshLayout.DEFAULT);// LARGE also can be used

        cityList = Arrays.asList(LIST_ITEM_TEXT_CITIES);
        listView = (ListView) findViewById(R.id.listView);
        adapter = new ArrayAdapter<String>(getApplicationContext(),
                R.layout.list_item, cityList);
        listView.setAdapter(adapter);
        listView.requestLayout();
    }

    Handler handler = new Handler() {
        public void handleMessage(android.os.Message msg) {

            if (refreshToggle) {
                refreshToggle = false;
                cityList = Arrays.asList(LIST_ITEM_TEXT_MORE_CITIES);
                adapter = new ArrayAdapter<String>(getApplicationContext(),
                        R.layout.list_item, cityList);
            } else {
                refreshToggle = true;
                cityList = Arrays.asList(LIST_ITEM_TEXT_CITIES);
                adapter = new ArrayAdapter<String>(getApplicationContext(),
                        R.layout.list_item, cityList);
            }
            listView.setAdapter(adapter);

            swipeView.postDelayed(new Runnable() {

                @Override
                public void run() {
                    Toast.makeText(getApplicationContext(),
                            "city list refreshed", Toast.LENGTH_SHORT).show();
                    swipeView.setRefreshing(false);
                }
            }, 1000);
        };
    };

    @Override
    public void onRefresh() {

        swipeView.postDelayed(new Runnable() {

            @Override
            public void run() {
                swipeView.setRefreshing(true);
                handler.sendEmptyMessage(0);
            }
        }, 1000);
    }

}