如何设置 autoLink="web" 的样式链接?

发布于 2024-11-07 03:58:25 字数 543 浏览 0 评论 0 原文

我有以下 TextView:

<TextView android:id="@+id/theFooBar"
          android:autoLink="web"
          android:layout_height="wrap_content"
          android:layout_width="fill_parent"
          android:text="@string/fooBar"
          android:textColor="@android:color/black"
          android:textSize="20sp"/>

和字符串:

<string name="fooBar">Foo <u>bar</u>.</string>

这给出了我的黑色带下划线的文本。如果我想要链接的蓝色、无下划线文本(“bar”部分),但我希望其余部分(“foo”部分)为黑色,该怎么办?我怎样才能做到这一点?

I have the following TextView:

<TextView android:id="@+id/theFooBar"
          android:autoLink="web"
          android:layout_height="wrap_content"
          android:layout_width="fill_parent"
          android:text="@string/fooBar"
          android:textColor="@android:color/black"
          android:textSize="20sp"/>

And the string:

<string name="fooBar">Foo <u>bar</u>.</string>

This gives my black, underlined text. What if I want blue, non-underlined text for the link (the "bar" part), but I want the rest (the "foo" part) to be black? How could I achieve that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香橙ぽ 2024-11-14 03:58:25

在 TextView 中添加 android:textColorLink 来定义链接的文本颜色

Add android:textColorLink in TextView to define text color for links

别理我 2024-11-14 03:58:25

在这种情况下,我建议您使用 WebView 而不是 TextView:

WebView web = (WebView) findViewById(R.id.theFooBar);
String str = "<font color='blue'>bar</font><font color='black'><u>foo</u></font>";
web.setBackgroundColor(0);
// It will sets the background color from white to transparent. 
web.loadData(str, "text/html", "utf8");

I recommended you to use WebView instead of TextView in this situation:

WebView web = (WebView) findViewById(R.id.theFooBar);
String str = "<font color='blue'>bar</font><font color='black'><u>foo</u></font>";
web.setBackgroundColor(0);
// It will sets the background color from white to transparent. 
web.loadData(str, "text/html", "utf8");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文