Issue with StringBuilder
I have used the table tag in sb.append but it is not showing table can any one help me out of this?
StringBuilder sb = new StringBuilder();
sb.append("<table><tr><td>A</td> <td>B</td> <td>C</td> </tr><tr><td>X</td> <td>Y</td> <td>Z</td> </tr></table> ");
Spanned mainContent = Html.fromHtml(sb.toString());
Log.d(TAG_ID, ""+mainContent);