So I have my TextView named 'container'
container.setText(Html.fromHtml(text, new URLImageParser(container, this),null));
with URLImageParser from Android HTML.fromHTML() with images?
this works fine and displayes the image. The problem is that I want to define the size of the image in the html tag. <img src=".." width="30px"> doesn´t work in all kind of variations!
Any idea how to set the image size in the html?