题:<a href="http://www.pku.edu.cn/ " target="_blank" class="f12redLink">进入</a>
这样的数据直接跳到一个网页
解:TextView web = (TextView) findViewById(R.id.item01);//用来显示超链接中的标题
//超链接跳转
CharSequence charSequence = Html.fromHtml(collegeWeb);//collegeWeb是如题的字符串,将其装换
web.setText(charSequence);
web.setMovementMethod(LinkMovementMethod.getInstance());//重点就是这个方法 能够获取浏览器 打开超链接