public static interface Html.ImageGetter

android.text.Html.ImageGetter



Retrieves images for HTML <img> tags.

Summary

Public methods

abstract Drawable getDrawable(String source)

This method is called when the HTML parser encounters an <img> tag.

Public methods

getDrawable

public abstract Drawable getDrawable (String source)

This method 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.

Parameters
source String
Returns
Drawable

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.