Android TextView实现带链接文字事件监听的三种常用方式示例

作者:迟做总比不做强 时间:2021-10-12 23:59:35 

本文实例讲述了Android TextView实现带链接文字事件监听的三种常用方式。分享给大家供大家参考,具体如下:


/**
* TextView实现文字链接跳转功能
* @description:
* @author ldm
* @date 2016-4-21 下午4:34:05
*/
public class TextViewLinkAct extends Activity {
 private TextView tv_3;
 private TextView tv_4;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.link);
   setTextViewLink();
 }
 /**
  * 通过不同方式实现TextView中文字点击链接跳转功能
  *
  * @description:
  * @author ldm
  * @date 2016-4-21 下午4:24:13
  */
 private void setTextViewLink() {
   // 以Html格式href链接方式实现跳转
   tv_3 = (TextView) findViewById(R.id.text3);
   tv_3.setText(Html
       .fromHtml("<b>text3: Constructed from HTML programmatically.</b> Text with a "
           + "<a href=\"http://www.google.com\">link</a> "
           + "created in the Java source code using HTML."));
   tv_3.setMovementMethod(LinkMovementMethod.getInstance());
   // 通过SpannableString的setMovementMethod方法实现链接效果
   SpannableString ss = new SpannableString(
       "text4: Manually created spans. Click here to dial the phone.");
   ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 30,
       Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
   ss.setSpan(new URLSpan("tel:4155551212"), 31 + 6, 31 + 10,
       Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
   tv_4 = (TextView) findViewById(R.id.text4);
   tv_4.setText(ss);
   tv_4.setMovementMethod(LinkMovementMethod.getInstance());
 }
}

布局文件


<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="wrap_content" >
 <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:divider="?android:attr/listDivider"
   android:orientation="vertical"
   android:showDividers="middle" >
   <!-- 通过在布局中autoLink属性设置TextView的链接功能. -->
   <TextView
     android:id="@+id/text1"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:autoLink="all"
     android:paddingBottom="8dp"
     android:text="&lt;b>text1: Various kinds
  of data that will be auto-linked.&lt;/b> In
  this text are some things that are actionable. For instance,
  you can click on http://www.google.com and it will launch the
  web browser. You can click on google.com too. If you
  click on (415) 555-1212 it should dial the phone. Or just write
  foobar@example.com for an e-mail link. If you have a URI like
  http://www.example.com/lala/foobar@example.com you should get the
  full link not the e-mail address. Or you can put a location
  like 1600 Amphitheatre Parkway, Mountain View, CA 94043. To summarize:
  https://www.google.com, or 650-253-0000, somebody@example.com,
  or 9606 North MoPac Expressway, Suite 400, Austin, TX 78759."
     android:textAppearance="?android:attr/textAppearanceMedium" />
   <TextView
     android:id="@+id/text3"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:paddingBottom="8dp"
     android:paddingTop="8dp"
     android:textAppearance="?android:attr/textAppearanceMedium" />
   <TextView
     android:id="@+id/text4"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:paddingTop="8dp"
     android:textAppearance="?android:attr/textAppearanceMedium" />
 </LinearLayout>
</ScrollView>

其中通过在而已代码中android:autoLink属性的选项目有:none(无链接效果),web(网页链接),email(发邮件),phone(打电话),map(定位)及all(默认全都自动链接)。

希望本文所述对大家Android程序设计有所帮助。

来源:http://blog.csdn.net/true100/article/details/51210422

标签:Android,TextView,链接,事件监听
0
投稿

猜你喜欢

  • Java并发工具类LongAdder原理实例解析

    2023-11-25 15:50:20
  • 聊聊Java并发中的Synchronized

    2022-07-26 03:19:24
  • Android自定义View实现简易画板功能

    2022-12-03 15:36:27
  • Java Collection集合iterator方法解析

    2022-11-17 06:43:29
  • C#中的虚函数virtual

    2023-09-07 13:49:53
  • java绘制五子棋棋盘

    2022-05-10 09:37:36
  • Java解析DICOM图之如何获得16进制数据详解

    2023-06-15 17:37:29
  • java方法重写实例分析

    2022-01-10 02:51:14
  • 详细解读Java的Lambda表达式

    2021-12-30 15:32:36
  • java数据结构排序算法之树形选择排序详解

    2022-07-22 23:43:17
  • android图像绘制(一)多种方法做图像镜像

    2023-08-23 01:34:18
  • 时间处理函数工具分享(时间戳计算)

    2021-07-24 05:06:18
  • JPA like 模糊查询 语法格式解析

    2022-06-16 20:43:42
  • 全面详解Spring Bean生命周期教程示例

    2023-08-09 11:41:15
  • C#获取两个数的最大公约数和最小公倍数示例

    2022-12-03 02:45:25
  • Java集合框架之Stack Queue Deque使用详解刨析

    2022-06-11 06:10:19
  • Java花式解决'分割回文串 ii'问题详解

    2022-07-09 02:01:58
  • Jetpack Compose图片组件使用实例详细讲解

    2021-06-09 08:15:24
  • 简单介绍区分applet和application的方法

    2022-11-05 07:18:40
  • Android使用Service实现简单音乐播放实例

    2023-11-30 20:03:23
  • asp之家 软件编程 m.aspxhome.com