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
0
votes
0 answers

Android - Pull to refresh on custom adapter

I'm developing an Android Application and I have a custom adapter for my ListView. I want to use a Pull to refresh library, such as this one. This works fine with an ArrayAdapter, but not with a custom adapter. How can I get my pull to refresh…
Florian Mac Langlade
  • 1,863
  • 7
  • 28
  • 57
0
votes
1 answer

Using refreshControl from UIViewController

I currently have a UIViewController that has two UIViews, hiding and un-hiding them via segmentedControl. I want to be able to implement the pull-to-refresh feature, which is easy if I had a UITableViewController. But I don't have that right now, so…
Angela
  • 11
  • 1
  • 3
0
votes
1 answer

refresh list in pull to refresh android

in native source code of pull_to_refresh library I have to pull the entire height of the layout appears to add a new item to list (see photo). please tell me where I can change the value of the height which I have to pull to refresh list? I want to…
0
votes
1 answer

Pulling to refresh Data

have got my app doing the motion of refreshing using ODRefreshcontrol : https://github.com/Sephiroth87/ODRefreshControl How to actually make this refresh my Table view?, heres the code from the .m file: #import "ThirdViewController.h" #import…
rexr
  • 89
  • 11
0
votes
4 answers

How to animate scroll a view like "pull to refresh"?

My app is showing the following: 'Sample 1' is just a view to display content. After I click up button, 'Sample 1' will scroll up and a new view 'Sample 2' will be showed from bottom, the final result is : I think I should append the sample 2…
remykits
  • 1,735
  • 4
  • 18
  • 20
0
votes
1 answer

Android Pull To Refresh Demo On Fragment

I have implemented pull to refresh using an library from https://github.com/chrisbanes/Android-PullToRefresh but when i call the demo function(mylistview.demo()) on my listview object from my fragment,the function doesn't execute. The demo function…
littleibex
  • 1,705
  • 2
  • 14
  • 35
0
votes
1 answer

Horizontal pull-to-refresh in HTML on iOS

How can I implement pull to refresh for iOS in HTML for a horizontal list? That is, a list that scrolls horizontally, but when you pull it to the right it reveals a hidden div that can trigger a javascript callback?
cgenco
  • 3,370
  • 2
  • 31
  • 36
0
votes
1 answer

Insert new rows in UITableView after refreshing table

Here there is my simple viewDidLoad method and UITableView delegates in a ViewController: import "HomeViewController.h" import "AFNetworking.h" import "SVPullToRefresh.h" - (void)viewDidLoad { [super viewDidLoad]; [self…
SILminore
  • 509
  • 3
  • 10
  • 28
0
votes
2 answers

Detect pulling listview and refresh

I even don't know, what to write in title bar. I want my app to implement this feature: For those, who don't understand what I'm talking about: I have a LitsView. I want to load some more data, if the user pulls the ListView "out of it…
azizbekian
  • 60,783
  • 13
  • 169
  • 249
0
votes
1 answer

Pull to refresh on Android crashes on Inflater

I've downloaded pull to refresh widget for android and now I'm trying to make it work. I copied everything from the plugin and plugin example folder into my project, changed the import reference to R in…
amik
  • 5,613
  • 3
  • 37
  • 62
0
votes
2 answers

Android pull-to-refresh or not design patterns

Hi just wondering whether or not to add a pull to refresh in my app. I am used to ios so i know the pull to refresh feature well and i like it however i am unsure whether or not this is a standard in android. Should i use pull to refresh or stick…
Luke Batley
  • 2,384
  • 10
  • 44
  • 76
0
votes
1 answer

Twitter4j pagination with pull-to-refresh-list (Chris Banes)

I try to implement homeline pagination via Twitter4j to pull-to-refresh list from Chris Banes. However, I have problems of that how to realize it. I have some notes how it should work but it isn't so, my pull refresh list doesn`t refresh. Have any…
Viktor M.
  • 4,393
  • 9
  • 40
  • 71
0
votes
1 answer

Unable to refresh tableview using EGOTableViewPullRefresh

I use RSSReader Version 2.0 with UITabBarController in my project. Tried to add a tableview update feature "pull to refresh" by EGOTableViewPullRefresh. I added 4 files to the project: EGORefreshTableHeaderView.h …
Pavel Kaljunen
  • 1,291
  • 2
  • 26
  • 53
0
votes
2 answers

Pull to refresh

My code always works with an 'standerd' UITableview, but now i implanted a Tableview in a viewcontroller. My code is not working (pull to refresh) does anyone know why? In a normal UITableview it works but hmm, maybe i'm missing some stuf because…
Jones
  • 375
  • 7
  • 23
-1
votes
1 answer

Add Pull to Refresh in Scrollview without bounce enabled

How we can configure pull to refresh without bounce enabled in scroll view. its simple when we keep bounce enable we just need to assign refresh control to scroll view but I don't want to enable bounce Any suggestions would be appreciated. thanks in…