An Alloy PullToRefresh widget!

If you use Appcelerator Titanium, you must know Alloy, a model-view-controller framework on top of it. Alloy is a very powerful tool: you write code faster, the code is structured, easily maintainable, and you get all the sugar provided by Alloy inside your Titanium apps: nifty!

Alloy also allows to create widgets, which are packages of code, similar to mini-project. Widgets can be dropped into several Alloy projects in order to reuse their code and features in multiple applications, or multiple times in the same application. Widgets are like a good bottle of wine in a dinner: you could not live without it.

In this article, I am going to present a PullToRefresh widget which we have lately created for our needs. The pull to refresh is a process which allows to refresh a page with a pull down action. This feature is very common in mobile applications, and we actually needed it in several of ours projects. As no convenient widget pre-existed, we decided to go with our own.

It was quite a big headache to implement this feature, so we share this widget with you today (♥ open source).

Section intitulée the-pulltorefresh-widgetThe PullToRefresh widget

The Titanium Alloy PullToRefresh widget allow to refresh the page with a pull down when using a ListView or a TableView for iOS and Android, without any dependency.

For iOS, we use the native refreshControl, and for Android, it’s a custom pull to refresh written from scratch. The header pull view is customizable and can be translated in multiple languages.

Android PullDown

Android Release

Android Loading

iOS Refresh

For iOS it’s quite easy, we just need to call the method Ti.UI.createRefreshControl() and launch the update method when the refreshstart event gets catched. And that’s it, pretty straightforward.

For Android, it is not as easy, far from it. The implementations goes through 3 steps:

  1. The pulling (when you scroll);
  2. The end of the pulling;
  3. What to do when it’s completed.

First, we create the controller headerPullView (the one that you can see in the images above) into a ScrollView, because we have to listen the scroll event for the first step, and a touchend event (fired when a touch event is completed) for the second, but the touchend event doesn’t fire all the time because of the scroll event, and in addition of that, the event scrollend which can make this implementation so easier doesn’t work for Android. So we create the variable interval which verify if the offset (space between the bottom of the pullView and the top) moves, every 2 seconds, if not it’s like we ended the scroll. In the last step, we manage the end of this scroll: if the offset is smaller than the size of the header pull view, then we just scroll back to the top, but if the header pull view is fully visible then it simply means that the update must be performed. Great then: we can call the update function, along with its callback.

You can find the source code of the widget in its Github repository, with a complete documentation and some examples.

Section intitulée wishlistWishlist

Unfortunately, the RefreshControl for iOS doesn’t work for ScrollView, and therefore the widget isn’t convenient if you use this type of list. This behaviour will surely be included in a next version, but you are welcome to contribute to this widget!

Commentaires et discussions

Ces clients ont profité de notre expertise