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
-1
votes
1 answer

Android Studio Pull to refresh recyclerview animation not working

In my recyclerview, I get data from internet and when pulled down it refreshes the data but during the process of retrieving the information from internet, the refresh icon seems to freeze. Not sure what I am doing wrong. TicketActivity.java public…
-1
votes
2 answers

Swipe to refresh

I'm new to Java and Android Development. Stuck with implementing "SWIPE TO REFRESH" in android. I'm trying to access a method that is in other class. I will highlight the error that android studio gives in blockquote. Help is much…
Nishanth Kr
  • 113
  • 2
  • 9
-1
votes
2 answers

How to implement pull refresh animation on a recyclerView without using external libraries?

I have a simple example where I have a RecyclerView that I want to be refreshed when the user pulls on the top of the list! I have used swipeRefresh layout. However when the list is refreshed the refresh icon is shown on on top of the items. I want…
-1
votes
2 answers

Pull the whole layout down on swipeRefreshLayoutListener android

I want to move the whole layout down when SwipeRefreshLayout Listener is called? Is this thing possile in android .? This is my whole xml layout.SwipeRefreshLayout contains a progressbar and FrameLayout and that is included in a RelativeLayout.So I…
-1
votes
2 answers

thread 1: signal SIGABRT error when using slide to refresh

I'm trying to add the slide to refresh feature to my app's table. I'm currently following the guide on YouTube found here and my app is crashing with a SIGABRT error when initializing the slide to refresh. My Code: // outlet - table view @IBOutlet…
Gabe Zimbric
  • 47
  • 1
  • 6
-1
votes
1 answer

How to use PullToRefresh in childFragment

I am using PullToRefresh to refresh the ListViewwhich is inside Child Fragment(nested fragment) but when I pull it down, some loading animation appears but it doesn't make any changes in list. It shows only the previous loaded data. here is my…
Devraj
  • 1,479
  • 1
  • 22
  • 42
-1
votes
2 answers

Android Pull to refresh keeps loading

I have implemented the Android-PullToRefresh in the application. Everything works fine but the pull to refresh keeps on loading after data is loaded in the Listview. list = (PullToRefreshListView) findViewById(R.id.stored_location); …
Somasundaram NP
  • 1,018
  • 1
  • 12
  • 36
-1
votes
1 answer

Changing color scheme of Chrisbanes' PullToRefresh Actionbar

Is there a way to change the color scheme of Chrisbanes PulToRefresh Actionbar? I have read the QuickStart (https://github.com/chrisbanes/ActionBar-PullToRefresh/wiki/QuickStart-Stock) but it is not mentioned. Thanks in advance.
Derekyy
  • 1,018
  • 4
  • 18
  • 31
-1
votes
1 answer

Android ListView Pull Down and Pull Up

I am new on Android Applications development. I want to know how to implement Pull down refresh and Pull up get more item from server in Listview. How can I do it? My Code get items from server is below. private class DownloadJSONItems extends…
user3555472
  • 836
  • 3
  • 11
  • 38
-1
votes
1 answer

Need to add footer bar in screen, using chrisbane pull to refresh

I am beginner in Android and using Chrisbane PullToRefresh - https://github.com/chrisbanes/Android-PullToRefresh I have to add one bottom bar in screen, but as per the code it is using frame layout and adding layout at runtime. I tried to add bottom…
Ashish Tamrakar
  • 810
  • 10
  • 24
-2
votes
2 answers

How to load more data in UITableView using pull to refresh or any other delegate methods in swift?

I'm implementing chat feature in my app where I want to show more chat message when user pulls to refresh something similar to what we have on iMessage. I've been exploring various options but couldn't find any simple solution to implement this.…
DaveMS
  • 157
  • 2
  • 13
-2
votes
2 answers

How to make pull to refresh in tableview buttom in iOS swift

Want to add the pull to refresh in bottom of tableview. First want to show the numbers in tableview 100 to 90. Then add the pull to refresh in bottom of tableview. pull it want to display 80 to 70, then pull refresh 70 to 60, then pull refresh 50…
saravanar
  • 639
  • 2
  • 11
  • 25
-2
votes
1 answer

Swift Pull to Refresh doesn't Show

i've add Pull To Refresh on UITableView on my Swift project successful, on another ViewController i'm not able to show it. On the others view the code is the same without LocationManager functions. I don't know where is my error! Below my…
Mit
  • 1
  • 2
-2
votes
2 answers

How to use import Android-PullToRefresh

https://github.com/chrisbanes/Android-PullToRefresh From this link url I using android studio and i want to import library to my project, other library has dependencies it's easy to use like dependencies { compile 'com.android.xxxxxx } But this…
-3
votes
1 answer

How to pull up from bottom to refresh webpage without animation

I think everybody know the way to refresh a webpage by pulling down from the top on mobile devices. I want to do the same but I want to pull up from the bottom instead. I also don't need any animation. I need something like: refresh page when…
David
  • 2,898
  • 3
  • 21
  • 57
1 2 3
45
46