Android TextView中设置超链接

  • Post author:
  • Post category:其他



使用


android:autoLink=”all”


只需在


TextView


中加入这个属性,而在


TextView


里面写的文字中包含网址、电话、


email


的会自动加入连接地址。



具体代码如下:

        <TextView 
        android:id="@+id/tv_scan_result"
       	android:layout_width="fill_parent"
       	android:textSize="18sp"
       	android:autoLink="all" 
       	android:textColor="@android:color/black"
        android:layout_height="wrap_content" />

自动识别链接

<!– android:autoLink=”web”-设置自动识别链接,值web为匹配Web网址 –>

<!–android:autoLink=”phone”-设置自动识别链接,值phone为匹配电话号码 –>

<!– android:autoLink=”email”-设置自动识别链接,值email为匹配Email地址 –>

<!– android:autoLink=”all”-设置自动识别链接,值all为匹配所有 –>



版权声明:本文为line1213原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。