public static interface Html.ImageGetter
Modifier and Type | Method and Description |
---|---|
Drawable |
getDrawable(String source)
This method is called when the HTML parser encounters an
<img> tag.
|
Drawable getDrawable(String source)
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.