如何在android中创建链接按钮

发布于 2024-12-06 23:14:47 字数 53 浏览 0 评论 0原文

我想在 android 中创建链接按钮。 谁能指导我如何在 android 中创建链接按钮?

I want to create Link button in android.
Can anyone guide me in how I can create a Link button in android?

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

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

发布评论

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

评论(2

喜你已久 2024-12-13 23:14:47

简单的。只需将链接放入 TextView 中即可。

<TextView
    android:id="@+id/txtLink"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/about_link"
    android:autoLink="all" />

注意:这里最重要的属性是android:autoLink="all"。这允许您链接到网址、电子邮件和电话号码。

在您的 strings.xml 中添加链接:

<string name="about_link"><a href='http://example.com'>http://example.com</a></string>
<string name="about_email"><a href='mailto:[email protected]'>[email protected]</a></string>

我知道这个答案来得很晚,但希望它能帮助其他人。

Simple. Just put the link in your TextView.

<TextView
    android:id="@+id/txtLink"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/about_link"
    android:autoLink="all" />

Note: The most important property here is android:autoLink="all". This allow you to link to urls, emails and phone numbers.

In your strings.xml add the link:

<string name="about_link"><a href='http://example.com'>http://example.com</a></string>
<string name="about_email"><a href='mailto:[email protected]'>[email protected]</a></string>

I know this answer is coming really late, but hope it helps someone else coming along.

酒与心事 2024-12-13 23:14:47
Uri uri = Uri.parse("http://www.example.com"); 
Intent intent = new Intent(Intent.ACTION_VIEW, uri); 
startActivity(intent);
Uri uri = Uri.parse("http://www.example.com"); 
Intent intent = new Intent(Intent.ACTION_VIEW, uri); 
startActivity(intent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文