I am trying to add lines with different colors to my TextView using html tags.
For whatever reason,
Html.fromHtml(\"
I use this code
Html.fromHtml(convertToHtml("text")); public String convertToHtml(String htmlString) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append(""); return stringBuilder.toString(); }