TextView underline phone number and hyperlink

前端 未结 2 984
难免孤独
难免孤独 2020-12-29 20:54

I\'ve written an app which contains a large textview for displaying notes. Is it possible to have the textview highlight any phone numbers or hyperlinks without underlining

相关标签:
2条回答
  • 2020-12-29 21:32

    You can use Linkify to turn phone numbers, URLs, and such into links that, when clicked on, launch appropriate apps (Dialer, Browser, etc.).

    If you were fishing for just an underline effect, without the links, you can:

    1. Mark up your text with HTML, particularly <u>...</u> for underlines
    2. Run that through Html.fromHtml() to get a Spannable with your formatting in place
    3. Feed that Spannable to your TextView via setText()

    Here is the list of HTML tags supported by Android 2.1's edition of Html.fromHtml(). Note that this is not officially documented anywhere, so your mileage may vary.

    0 讨论(0)
  • 2020-12-29 21:33
    <TextView 
       ...
       android:autoLink="all"
    />
    

    That's actually enough for you

    0 讨论(0)
提交回复
热议问题