答案 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));
此处谷歌将显示为链接