2016-06-17 108 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));

相关问题