2

I have a TextView in an app, the text of which is set by a hard-coded string resource in the layout. In order to get a bulleted list in the TextView, I've used the (unofficial?) support for the <li> element. This creates properly-indented bullets, as desired, but the leftmost edge of the bullets themselves are slightly cut off, as you can see:

in this image.

I have tried adding left padding to these, but it did nothing to the clipped edge - just moved the whole thing inwards.

  1. Is there any simple solution to resolve this?
  2. Where does the resource for that bulleted list live?
colecmc
  • 3,133
  • 2
  • 20
  • 33
Shoofle
  • 48
  • 5
  • @Elenasys http://daniel-codes.blogspot.com/2011/04/html-in-textviews.html there's support for one set of tags when you just set the string contents of a `TextView`, and a completely disparate set of tags when you set with `Html.fromHtml`. `
  • ` is only supported in the first.
  • – Shoofle Apr 08 '14 at 14:31