Linkify in android TextView

前端 未结 4 1549
挽巷
挽巷 2021-01-13 03:28

I have a text view with text\" This is a product developed by XYZ. For more queries, mail us at info@abc.com. And I have linkified \"info@abc.com\". But the problem is, when

4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-13 04:10

    Method using Linkify Class:

    myTextView.setAutoLinkMask(Linkify.EMAIL_ADDRESSES);
    myTextView.setLinksClickable(true);
    

提交回复
热议问题