27Loopers, Handlers, and HandlerThread

Now that you have downloaded and parsed XML from Flickr, your next task is to download and display images. In this chapter, you will learn how to use Looper, Handler, and HandlerThread to dynamically download and display photos in PhotoGallery.

Preparing GridView for Displaying Images

The current adapter in PhotoGalleryFragment simply provides TextViews for the GridView to display. Each TextView displays the caption of a GalleryItem.

To display photos, you need a custom adapter that provides ImageViews instead. Eventually, each ImageView will display a photo downloaded from the mUrl of a GalleryItem.

Start by creating a new layout file for your gallery items called gallery_item.xml. This layout will consist ...

Get Android Programming: The Big Nerd Ranch Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.