Linkify匹配电话号码,Email等

 

<TextView
 android:id="@+id/tv1"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 
 android:autoLink="web|phone|email"
/>
 
Linkify.addLinks(tv, Linkify.WEB_URLS|
            Linkify.EMAIL_ADDRESSES|Linkify.PHONE_NUMBERS);

 

判断是不是电话号码,或者email,或者链接地址。如果是的话加入链接,点击就可以调用系统进行访问了

你可能感兴趣的:(email)