Since: API Level 2.5
public static interface

ListUrlImageAdapter.Request

com.droidux.pack.list.adapters.ListUrlImageAdapter.Request

Class Overview

A Request object is used to add image url to the queue for download from the web.

Summary

Public Methods
abstract void download(String imageUrl, int refId)
Download an image from the specified url.
abstract void download(String imageUrl)
Download an image from the specified url.
abstract void setHttpParams(HttpParams params)
Set the http parameters used when creating the HttpClient to download the image.

Public Methods

public abstract void download (String imageUrl, int refId)

Since: API Level 2.5

Download an image from the specified url.

Parameters
imageUrl The image url.
refId Reference id for use to identify the requested image.

public abstract void download (String imageUrl)

Since: API Level 2.5

Download an image from the specified url.

Parameters
imageUrl The image url.

public abstract void setHttpParams (HttpParams params)

Since: API Level 2.5

Set the http parameters used when creating the HttpClient to download the image.

Parameters
params The http parameters.