Android之文字点击链接

Posted 冷的锋刃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
  }

以上是关于Android之文字点击链接的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

Android Place自动填充片段:无法设置文字

Android 点击文字实现跳转

Android开发经验之在图片上随意点击移动文字

如何通过邮件中的android深层链接打开片段?

flutter实现文字识别之图片拖拽选框选取截取文字