我有以下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>
这给我带有黑色下划线的文字。如果我想要链接的蓝色,非下划线文本(“条形”部分),但我希望其余部分(“foo”部分)为黑色,该怎么办?我怎么能做到这一点?
答案 0 :(得分:3)
在TextView中添加android:textColorLink以定义链接的文本颜色
答案 1 :(得分:1)
我建议你在这种情况下使用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");