我使用了改造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未显示为链接。
请帮助我...