android textview 显示带图片和超链接的html,且图片带有超链接可点击跳转
1个回答
2016-09-01
展开全部
可以使用以下的方式进行显示:
import android.text.Html;
2
3 TextView t3 = (TextView) findViewById(R.id.text3);
4 t3.setText(
5 Html.fromHtml(
6 "<b>text3:</b> Text with a " +
7 "<a href=\"http://www.google.com\">link</a> " +
8 "created in the Java source code using HTML."));
import android.text.Html;
2
3 TextView t3 = (TextView) findViewById(R.id.text3);
4 t3.setText(
5 Html.fromHtml(
6 "<b>text3:</b> Text with a " +
7 "<a href=\"http://www.google.com\">link</a> " +
8 "created in the Java source code using HTML."));
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询