gpt4 book ai didi

Android TextView 将文本显示为链接

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:31:00 26 4
gpt4 key购买 nike

我的应用程序中有 TextView,我想将文本显示为链接。

我有“查看 map ”字符串,我想将其显示为超链接(蓝色和下划线)。

我正在尝试这个:

tvSeeMap.setText(getResources().getString(R.string.see_map));
Linkify.addLinks(tvSeeMap, Linkify.ALL);

但它不会起作用。

最佳答案

我找到了解决方法

 String tempString = new String(getResources().getString(R.string.see_map));
SpannableString content = new SpannableString(tempString);
content.setSpan(new UnderlineSpan(), 0, tempString.length(), 0);
tvSeeMap.setText(content);
tvSeeMap.setTextColor(getResources().getColor(R.color.blue));

就这么简单。

关于Android TextView 将文本显示为链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13314540/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com