How to start new line with space for next line in Html.fromHtml for text view in android

android, html

Solution

Did you try `<br/>`, `<br><br/>` or simply `\n` ? `<br>` should be supported according to this source, though.

Supported HTML tags

Problem

Could anyone tell me how to start new line with space for next line in `Html.fromHtml` for text view in android? I used `<br>` tag for next line; I can't achieve to give space because `&nbsp;` will not support in `Html.fromHtml`. can aybody tell is ther any other way to achieve this?

Original source