作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在android中创建链接按钮。
谁能指导我如何在 android 中创建链接按钮?
最佳答案
简单。只需将链接放在您的 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"
.这允许您链接到网址、电子邮件和电话号码。
<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>
关于android-widget - 如何在android中创建链接按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7555767/
我是一名优秀的程序员,十分优秀!