Jurparserpams
New Member
I am using a TextView to show some text I have formatted from HTML:\[code\]Spanned s = Html.fromHtml(getString(R.string.disclaimer));tvDisclaimer.setText(s);\[/code\]The text is in the \[code\]strings.xml\[/code\] using CDATA:\[code\]<string name="disclaimer"> <![CDATA[ ]]></string>\[/code\]The point now, is that the whole thing crashes with an \[code\]IndexOutOfBoundsException\[/code\] in \[code\]Choreographer\[/code\]. It works for some simple HTML, but at some point, I only have to add one character (?) to have it crash. Removing the character makes it work.