我有一个TextView显示电话:0900-1111,传真:0900-2222
有没有一种方法,使手机点击,但没有传真。
运用
Phone: <a href="tel:09001111">0900-1111</a>, Fax: 0900-2222
随着自动链接设置为手机,都是可点击的!
我有一个TextView显示电话:0900-1111,传真:0900-2222
有没有一种方法,使手机点击,但没有传真。
运用
Phone: <a href="tel:09001111">0900-1111</a>, Fax: 0900-2222
随着自动链接设置为手机,都是可点击的!
你检查的API演示?
他们有一个样品只是这一点,在查看/文字/ Linkify。
该类位于com.example.android.apis.text.Link.java
例如,用于那里的的TextView之一的字符串是:
<string name="link_text_manual"><b>text2: Explicit links using <a> markup.</b>
This has markup for a <a href="http://www.google.com">link</a> specified
via an <a> tag. Use a \"tel:\" URL
to <a href="tel:4155551212">dial a phone number</a>.
</string>
和TextView的是:
<TextView android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/link_text_manual"
/>