在Textview中创建超链接

时间:2016-04-25 13:13:45

标签: java android eclipse layout hyperlink

我有很多文字,我想在其中间建立一个链接。

这就是它的样子,www.rkz.nl就是我想成为一个链接。

enter image description here

4 个答案:

答案 0 :(得分:0)

将以下属性添加到textview

android:autoLink="web"

答案 1 :(得分:0)

在字符串文件中创建该文本,然后将该字符串与您想要的链接

连接

答案 2 :(得分:0)

使用Xml

<TextView
android:text="Click my My Url: www.google.com"
android:id="@+id/tvUrl"
android:layout_height="wrap_content" 
android:layout_width="wrap_content"
android:autoLink="web">

编程

 final TextView tvUrl= (TextView)findViewById(R.id.tvUrl);
    tvUrl.setText("Click my My Url: www.google.com");
    Linkify.addLinks(tvUrl, Linkify.WEB_URLS);

答案 3 :(得分:0)

发现了一个类似的问题试试这个 Dynamically setting links to text in strings.xml 或试试这个

TextView textView =(TextView)findViewById(R.id.textView);
textView.setClickable(true);
textView.setMovementMethod(LinkMovementMethod.getInstance());
String text = "<a href='http://www.google.com'> Google </a>";
textView.setText(Html.fromHtml(text));

此处谷歌将显示为链接