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
4
votes
2 answers

How to Scroll a ListView in android programatically to up to down gesture

I am newbie to android and have implemented pull to refresh and a custom ListView in my demo app. I am deleting an item from listItem class,when I am dong pull to refresh that item is removed from my ListView but it must needed to do that,I want to…
sulphuric Acid
  • 585
  • 6
  • 23
4
votes
5 answers

I can't make swipe gesture work for me in Appium using Java

I can't made Swipe action work. I did browsed through the web for a few days and found many similar questions but there is no working answer. Also I have tried TouchAction class, doesn't work as well. I have Appium Version 1.4.13 (Draco) and using…
Sashko
  • 191
  • 3
  • 10
4
votes
0 answers

Swipe to refresh in listfragment when there are no items

I did a Swipe to refresh in my list fragment and it works good when i have items in my list but when i have no items it's working too but you can only see the loading refresh button a few seconds. Here is my layout :
ouya
  • 213
  • 1
  • 3
  • 10
4
votes
1 answer

Customize Android Pull-To-Refresh Icon

is it possible to replace the Icon of the Pull-To-Reload, the circle-arrow, with something else? I'd like to have something like a trash-can instead. Thanks, Georg
Georg
  • 3,664
  • 3
  • 34
  • 75
4
votes
3 answers

Swipe to refresh Icon is not shown properly

I am using a ListView and refreshing it when swiping down with SwipeRefresh, it works fine till here. The problem occurs when I try to set a TextView on mListview.setEmptyView() the Refresh Icon is not shown while swiping. It looks like it is under…
hrskrs
  • 4,447
  • 5
  • 38
  • 52
4
votes
1 answer

UITableView pull to refresh automatically

I got a UITableViewController and the data of the list is get from the server. Supporting scroll down to refresh data. My question is when view did load. I don't want user use finger to pull it down get the data, but UITableView scroll down itself…
Wayde
  • 137
  • 2
  • 10
4
votes
2 answers

Android Pull-to-Refresh with ListView Fragment & Custom ListView Adapter

I built my project using the Android Studio start options (Automatically builds the action bar with the tabs) so a bit is generated for me. I did however implement a list-view fragment for each one of the tabs that uses custom adapters. I'm having…
4
votes
3 answers

Pulltorefresh add to gradle

can anyone help me add this library in build.gradle Android Studio. https://github.com/chrisbanes/Android-PullToRefresh I know it is deprecated but I want to use it, I would appreciate if someone could help me what to write in dependencies…
4
votes
2 answers

UIRefreshControl not showing indicator or title?

I want to implement Pull To Refresh to my UITableViewController by using UIRefreshControl. Here what i tried so far. - (void)viewDidLoad { ..... ////********* Pull to refresh ************/ UIRefreshControl *refresh =…
Bharat
  • 2,987
  • 2
  • 32
  • 48
4
votes
2 answers

Android pull-to-refresh show loading footer at start

I am using the old version of Android PullToRefresh library. It works fine for triggering loading when over scrolling. However, I want to show the loading footer view when I first enter my activity. I tried many times but still cannot find a correct…
Robin
  • 10,052
  • 6
  • 31
  • 52
4
votes
2 answers

is it possible to merge stickylistviewheader with crisbanes pulltorefresh?

I building an app where pulltorefresh and stickylistHeaders are both need.i have implemented the pulltorefresh in the app but am not able to make it work with stickyListHeaders.Is it possible to merge the two libraries? Or is there any…
shreyas
  • 2,166
  • 3
  • 18
  • 30
4
votes
1 answer

Android PullToRefresh onScrollListener not working

I have chrisbanes PullToRefresh lib working in my project. Now I need to intercept scroll events to add some logic, it seems that the library is prepared to set onScrollListener, and I tried to add one…
ssantos
  • 16,001
  • 7
  • 50
  • 70
4
votes
2 answers

Chris Banes PullToRefreshListView with Custom Adapter Error

I'm Settings up a Custom ListView. The pull-to-refresh feature comes straight from https://github.com/chrisbanes/Android-PullToRefresh The ListView displayes Images, so i created a custom Adapter: class mAdapter extends BaseAdapter{ public…
4
votes
1 answer

Use PullToRefreshExpandableListView in Fragment

I used library for list view pull to refresh in Fragment and it is very good library : https://github.com/chrisbanes/Android-PullToRefresh Now I want to use PullToRefreshExpandableListView . I looked sample code, and explained very well on…
4
votes
1 answer

Pull to refresh and load in listview

I need to implement pull to refresh and load in listview.I have used custom adapter to create the listview.How could i implement pull to refresh and load using the adapter class. Could anybody help me?
user2134412