Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
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
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.