Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android TextView裡字段如何獲取超鏈接

Android TextView裡字段如何獲取超鏈接

編輯:高級開發

 strings.XML文件內容如下:

  < resources>

  < string name="autolink_text">

  This is autolink text example.

  If you click on link http://www.google.com, then it will launch web browser.

  If you click on [email protected], then it will launch email program.

  And, if you click on phone number (626)888-6666,

  it should dial the phone automatically.< /string>

  < /resources>

  在main.XML文件內容如下:

  < LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"

  android:orIEntation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent">

  < TextVIEw

  android:id="@+id/text"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

  android:autoLink="all"

  android:textSize="25sp"

  android:text="@string/autolink_text"/>

  < /LinearLayout>

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved