1) How can I change / extend the TextView to render inline images?
It seems that setText (Html.fromHtml (... image tags ...)) may actually allow image insertion if configured correctly, but I haven't tried it myself. Even if I still need fine-grained control over the graphic pattern (my ultimate goal is to display embedded animated emoticons). Therefore, unfortunately, a view based on WebKit or the like is also not an option.
2) As an alternative solution, I thought about mixing TextViews and ImageViews (or, more specifically, my subclasses that allow animation), but I'm not sure how I could get the proper packaging (I'm pretty new to Android).
source
share