Added in API level 1
ImageGetter
interface ImageGetter
android.text.Html.ImageGetter |
Retrieves images for HTML <img> tags.
Summary
Public methods | |
---|---|
abstract Drawable! |
getDrawable(source: String!) This method is called when the HTML parser encounters an <img> tag. |
Public methods
getDrawable
Added in API level 1
abstract fun getDrawable(source: String!): Drawable!
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.