2016-06-17 120 views
1

在recyclerView中顯示評論。評論以HTML格式存儲。在recyclerView中顯示html的最佳方式是什麼?

我試圖在webView中顯示評論 - 所有顯示都很好(能夠使用自定義* .css),但recyclerView在滾動時顯着延遲。我無法讓它對觸摸「透明」,因爲commentView支持連鎖效應(android:background =「?attr/selectableItemBackground」),但是webView - 沒有。

此外我試圖顯示在textView作爲spannable的評論。一切工作都很快,但更難以定製外觀。

幫我選擇在recyclerView中顯示評論的最佳方式。

因此,我想是這樣的:

enter image description here

回答

0

這裏htmlString意志是抱着你的HTML內容。

TextView textView = (TextView)findViewById(R.id.tv_string); textView.setText(Html.fromHtml(htmlString));

相關問題