to top
Android APIs
Added in API level 1
public static interface

Html.ImageGetter

android.text.Html.ImageGetter

Class Overview

Retrieves images for HTML <img> tags.

Summary

Public Methods

? Examples
abstract Drawable getDrawable( String source)
This methos is called when the HTML parser encounters an <img> tag.

Public Methods

public abstract Drawable getDrawable (String source)

Added in API level 1

This methos is called when the HTML parser encounters an <img> tag. The source argument is the string from the "src" attribute; the return value should be a Drawable representation of the image or null for a generic replacement image. Make sure you call setBounds() on your Drawable if it doesn't already have its bounds set.

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.