As the title states I am looking for a faster alternative than this:
textviewXy.setText(Html.fromHtml(random_html_styled_string));
this approach is really slow if you need to apply it to several textviews and i am looking for another method(maybe a support library), other than spannables (i tried them, but they wont work as the dont allow line breaks unless you use a spannableStringBuilder which isnt possible at the moment with my apps architecture...
i found a "similar" question here but i dont want to decode the html out of the string, i just want a faster API to apply it to my textview..
Thanks in advance