我想在android中创建链接按钮。 任何人都可以指导我如何在android中创建一个链接按钮?
答案 0 :(得分:18)
简单。只需将链接放在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:admin@example.com'>admin@example.com</a></string>
我知道这个答案来得太晚了,但希望它可以帮助其他人出现。
答案 1 :(得分:2)
Uri uri = Uri.parse("http://www.example.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);