如何在android中创建链接按钮
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的。只需将链接放入 TextView 中即可。
注意:这里最重要的属性是
android:autoLink="all"
。这允许您链接到网址、电子邮件和电话号码。在您的 strings.xml 中添加链接:
我知道这个答案来得很晚,但希望它能帮助其他人。
Simple. Just put the link in your TextView.
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:
I know this answer is coming really late, but hope it helps someone else coming along.