How to show Html format of Tables in Textview in android?
            Asked
            
        
        
            Active
            
        
            Viewed 1,638 times
        
    0
            
            
        
        Phantômaxx
        
- 37,901
 - 21
 - 84
 - 115
 
        Lokesh
        
- 316
 - 3
 - 14
 
- 
                    Try this https://stackoverflow.com/a/13799882/3505534 – Ramesh sambu Dec 28 '17 at 08:36
 - 
                    Possible duplicate of [TextView with html table](https://stackoverflow.com/questions/13799856/textview-with-html-table) – PseudoPsyche Dec 28 '17 at 09:16
 
1 Answers
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
 
