2

我的应用程序中有一个 TextView。这是一个字幕文本。我想让这个字幕文本的链接是可点击的。我怎样才能做到这一点?

感谢帮助。

编辑:我的代码:

xml:

android:id="@+id/marquee_text"
android:autoLink="web"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true" 
android:text=" "

爪哇:

marqueeText.setLinksClickable(true);
marqueeText.setText(marquee);//marquee is a string
4

3 回答 3

1
  • 通过XML

    android:autoLink="web"
    
  • 通过代码

    txtView.setAutoLinkMask(Linkify.WEB_URLS)
    
于 2012-08-29T12:45:45.743 回答
0

尝试 Linkify 添加到 textview 的链接。

mTextSample = (TextView) findViewById(R.id.textSample);
String text = "Visit my blog jtomlinson.blogspot.com You can see Marquee also here";
mTextSample.setText(text);
//jmt: pattern we want to match and turn into a clickable link
Pattern pattern = Pattern.compile("jtomlinson.blogspot.com");
//jmt: prefix our pattern with http://
Linkify.addLinks(mTextSample, pattern, "http://");

欲了解更多信息,请单击此处

于 2012-08-29T12:39:36.353 回答
0

android:autoLink="web"在您的布局 XML 中设置TextView,或者您可以在此处使用解决方案:

如何使 TextView 中的链接可点击?

于 2012-08-29T12:39:50.577 回答