fromHtml在recyclerview适配器中不显示图像

时间:2018-08-08 16:54:03

标签: android-studio retrofit

我使用了改造2并从我的网站获取json内容。 像这样的json:

{
    "id": 1,
    "title": "test title!",
    "content": " hello word! <img src="test.jpg"> , please click <a href="http://test.com/">here</a>",
    "avatar": "https://test.com/p152.png"
}

我使用recyclerview适配器获取json:

holder.title.setText(posts.get(position).getTitle());    

holder.content.setText(fromHtml(posts.get(position).getContent()));

Picasso.with(context).load(posts.get(position).getAvatar()).into(holder.avatar);           
holder.avatar.setTag(posts.get(position).getAvatar());

标题和头像显示没有问题。 但在内容img中未显示为图片, 和href未显示为链接。

请帮助我...

1 个答案:

答案 0 :(得分:0)

documentation中所述,要处理img标签,您需要实现自己的Html.ImageGetter。