Sunday, March 17, 2013


MUST-HAVE LIBRARIES IN MODERN ANDROID DEVELOPER TOOLBOX

Android version distribution
Android version distribution
Ice Cream sandwich (and Honeycomb before it) brought significant improvements to the Android API, which significantly ease cross-device development and thanks to efforts of several developers a large part of those changes were backported in form of libraries for Android 2.x.
The most headache-easing libraries for Android development I’ve found so far are:


1. Android Support Package

This is official Google library which backports Fragments and Loaders.
  • Fragments add a way to manage only part of displayed activity life-cycle and are critical part of tablet user interfaces – especially if you want to develop apps which work on phones and tablets without publishing separate APKs.
  • Loaders are a high-level interface for retrieving data from slow sources (network or database). Android runtime caches the loaders by their ID across Activity life-cycle, which means easy management and caching of remote data without writing boiler-plate AsyncTask code to keep state across orientation changes.

2. Action Bar Sherlock

ABS is a library by Jake Wharton that backports the Action bar API to Android 2.x.
Action bar is a new Android paradigm, which is composed of a top bar with application name and implements tab navigation, menu replacement and “up” navigation. Pretty much any Android app has an action bar (or at least should have) and this API is the easiest way to implement it. It also handles tab navigation with optional split mode (you should not use TabHost anymore) and menu buttons on devices without physical keys (e.g. Galaxy Nexus) and moves icons to menu when screen space runs out.
Boid Twitter client with split action bar
Boid Twitter client with split action bar on top and bottom
More details of how to use action bar (and why it’s important) are available on Android Design page.
Seriously, if you’re not using it yet, you should.

3. Action Bar Style Generator

Action Bar Style Generator is a nice little web tool by Jeff Gilfelt, which generates styles and 9-patch images in selected colors. It’s compatible with before-mentioned ActionBarSherlock library and is a must-have if you want custom branded application.

4. Nine Old Androids

Nine Old Androids is another gem from Jake Wharton, which ports 3.x+ animation API to Android 1.x+.
Android animation pre-3.x was very clunky and required XML files to do anything useful. Honeycomb made everything easier (but not perfect) by introducing view property animators. This is thus a must-have for an app that wants to be compatible with 2.x and visually appealing at the same time.

5. Pull-to-Refresh

Pull-to-Refresh allows you to implement the iOS-ish paradigm of pulling a ListView to refresh content.
Pull-to-refresh example
NOTE: Pull-to-refresh is a distinctly non-Android way of refreshing content, I suggest adding a separate “Refresh” option to the menu (e.g. like Boid Twitter client) to avoid user confusion.

6. RoboGuice

RoboGuice is a dependency-injection framework for Android, which works perfectly for Android UI elements and services. It helps eliminate all those pesky findViewById(), getIntent().getExtras() calls littering the Activity code, making it more readable and (because of some added checks) less error-prone.
There were some problems using both RoboGuice and ABS in the same project (since both extend the Activity class), however this issue has been fixed in latest version of ABS – see example on ABS GitHub.

 7. ViewPagerIndicator

Android Support Library also adds support for horizontally scrolling ViewPager, which allows you to put several fragments side by side and allow user to swipe between them. However, the API is missing a position indicator similar to the one in Google+ and Play Market apps. Such customizable indicator is provided by ViewPagerIndicator library.
View pager indicator tabs
ViewPagerIndicator in tab mode

8. AQuery

Noone in their right mind would say Java is a concise language – it often needs alot of boilerplate code to do things. AQuery is a library that tries to fix this problem by adding a more fluent API over Android platform API, cleaning up your codebase.
Thanks to Damjan Malis for last two suggestions.
That’s it for now, if there are any other great Android libraries I’d be happy to know.