Bob Kerns wrote: > Well, I was taking this page as definitive: > > http://developer.android.com/intl/de/guide/topics/resources/available-resources.html#stringresources > > Which is where I got my count of 3 tags. However, in searching for > that, I found this (which links to that): > http://developer.android.com/intl/de/guide/appendix/faq/commontasks.html#selectingtext > > Which gives a count of 9 tags -- still not including <br/>.'
10, actually -- 9 on the second page you linked to, plus <img> as mentioned in Html.fromHtml()'s documentation. And I know that <font> works, at least for the color attribute, based on some StackOverflow support issues. And examining the source code, in addition to the above, I see references to <div>, <p>, <blockquote>, <font size="" face="">, <em>, <strong>, <cite>, <dfn>, <h1> through <h6>, ...and <br>. <br> is supposed to inject \n as a newline. In a nutshell, the docs are out of sync with the source. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Beginning Android_ from Apress Now Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

