Questions tagged [pull-to-refresh]

Pull To Refresh is a UI interaction wherein a user pulls down on a scrolling view or list, beyond the upper bounds of the view, and releases it in order to refresh the contents of that view or list.

Pull To Refresh is a UI interaction wherein a user pulls down on a scrolling view or list, beyond the upper bounds of the view, and releases it in order to refresh the contents of that view or list.

This interaction has been used in many published apps, mainly for mobile devices, and has become one of the most widely used methods of allowing a user to refresh their current view.

Pull To Refresh libraries:

  • Android-PullToRefresh - Implementation of the Pull-to-Refresh UI Pattern for Android
  • Three20 - Three20 is an Objective-C library for iPhone developers (contains a pull to reload component)
  • EGOTableViewPullRefresh - A similar control to the pull down to refresh control created by atebits in Tweetie 2
  • ODRefreshControl - A pull down to refresh control like the one in Apple's iOS6 Mail App
677 questions
-3
votes
1 answer

Android pull to refresh listview data duplication while fetching data from localhost php and mysql server

my php code for fetching data from database.. can anybody tell me how can i load data into my android pull to refresh listview only new data $sql = "SELECT * FROM hotelbook"; $res = mysql_query($sql); $arr = array(); while($row =…
-4
votes
1 answer

Swift 2 refresh table view contents

I have written a "refresh" method which should show new items in the table view but it doesn't seem to be reloading the cells properly. func refresh(sender:AnyObject) { page = 1 self.data_request() } func data_request(){ let user_id =…
tmac99
  • 153
  • 2
  • 10
1 2 3
45
46