安卓的TextView与点击电话号码[关闭](Android textview with click

2019-08-16 20:19发布

我有一个TextView显示电话:0900-1111,传真:0900-2222

有没有一种方法,使手机点击,但没有传真。

运用

Phone: <a href="tel:09001111">0900-1111</a>, Fax: 0900-2222

随着自动链接设置为手机,都是可点击的!

Answer 1:

你检查的API演示?

他们有一个样品只是这一点,在查看/文字/ Linkify。

该类位于com.example.android.apis.text.Link.java

例如,用于那里的的TextView之一的字符串是:

<string name="link_text_manual"><b>text2: Explicit links using &lt;a&gt; markup.</b>
  This has markup for a <a href="http://www.google.com">link</a> specified
  via an &lt;a&gt; 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"
            />


文章来源: Android textview with clickable phone number [closed]