【问题标题】:How to show Html format of Tables in Textview?如何在 Textview 中显示 Html 格式的表格?
【发布时间】:2017-12-28 08:33:00
【问题描述】:

如何在android的Textview中显示Html格式的表格?

【问题讨论】:

标签: android textview


【解决方案1】:

使用WebView加载html表格

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

JAVA 代码

WebView webView=findViewById(R.id.webview);
webView.loadData(htmlStringData, "text/html", "UTF-8");

【讨论】:

  • &lt;table&gt; 不支持与 Html.fromHtml 一起使用的 HTML 标记
猜你喜欢
  • 2015-09-03
  • 2017-01-13
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-02-02
相关资源
最近更新 更多