0

How to show Html format of Tables in Textview in android?

enter image description here

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Lokesh
  • 316
  • 3
  • 14

1 Answers1

3

Use WebView to load html Tables

<WebView
   android:id="@+id/webview"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"/>

JAVA code

WebView webView=findViewById(R.id.webview);
webView.loadData(htmlStringData, "text/html", "UTF-8");
Goku
  • 9,102
  • 8
  • 50
  • 81