Android之文字点击链接

定义textView1和textView2并获得组件。

String html = "<font color='red'></font>";
 html += "<a href='http://www.baidu.com'>百度一下</a><br>";
 // 点击的时候产生超链接
 CharSequence charSequence = Html.fromHtml(html);
 textView1.setText(charSequence);
 textView1.setMovementMethod(LinkMovementMethod.getInstance());
 String text ="文本域";
 textView2.setText(text);
 textView2.setMovementMethod(LinkMovementMethod.getInstance());

添加onCreateOptionsMenu方法:

 @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
  }

记得添加权限:

<uses-permission android:name="android.permission.INTERNET">

So,that's all.

posted @ 2016-06-11 07:32  冷的锋刃  阅读(331)  评论(0编辑  收藏  举报