Android ---android:autoLink属性

URL链接 email 链接


  TextView识别链接的方式有两种,一种是自动识别链接和HTML解析链接


   自动识别链接:

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

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

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

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

例子:

 <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:autoLink="all"
        android:text="
        android:textSize="16dp" />

 

posted @ 2015-05-22 23:25  减掉一斤是一斤  阅读(1756)  评论(0编辑  收藏  举报