如何设置 autoLink="web" 的样式链接?
我有以下 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”部分)为黑色,该怎么办?我怎样才能做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 TextView 中添加 android:textColorLink 来定义链接的文本颜色
Add android:textColorLink in TextView to define text color for links
在这种情况下,我建议您使用 WebView 而不是 TextView:
I recommended you to use WebView instead of TextView in this situation: