android textview 点击链接

发布于 2024-10-26 05:26:31 字数 130 浏览 1 评论 0原文

如果我有一个包含从 Html.fromHtml(source) 获取的跨区文本的文本视图,如何使文本视图在单击链接时做出反应?在我的文本视图中,链接类似于“单击此处”,并且此文本是一个链接,而不是像 www.google.com 这样的直接链接。

If I have a textview with spanned text obtained from Html.fromHtml(source), how to make the textview to react when I click on a link? In my textview, link is something like "click here" and this text is a link, it's not a direct link like www.google.com.

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

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

发布评论

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

评论(4

动听の歌 2024-11-02 05:26:31
 android:autoLink="web"
 android:autoLink="web"
微凉 2024-11-02 05:26:31

我猜你想自己处理跨度点击事件。
有两种方法:
1)创建新类扩展URLSpan
2)创建新类扩展LinkMovementMethod

请参阅下面的网址,可能会对您有所帮助。
https://stackoverflow.com/a/16182500/596555

I guess you want to handle span click event by yourself.
There two ways for this:
1)Create new class extends URLSpan
2)Create new class extends LinkMovementMethod

Please see below url, may be help you.
https://stackoverflow.com/a/16182500/596555

壹場煙雨 2024-11-02 05:26:31

将此代码添加到您的 tetView

android:text="@string/Documentation

将此行添加到 string.xml [ res/values]

<string name="Documentation"><a   href="https://developer.android.com/guide/components/activities/activity-lifecycle">Android Activity Lifecycle Documentation</a> 
</string>

将此代码添加到您的 MainActivity.java

TextView textView = findViewById(R.id.textView);      textView.setMovementMethod(LinkMovementMethod.getInstance());

Add this to your tetView

android:text="@string/Documentation

Add this line to string.xml [ res/values]

<string name="Documentation"><a   href="https://developer.android.com/guide/components/activities/activity-lifecycle">Android Activity Lifecycle Documentation</a> 
</string>

Add This code to your MainActivity.java

TextView textView = findViewById(R.id.textView);      textView.setMovementMethod(LinkMovementMethod.getInstance());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文