I have a TextView with following words:
Google LLC is an 123 American multinational technology 456 company that specializes in Internet-related services and products. These include online advertising technologies, search, cloud computing, software, and hardware. Google was founded in 1998 by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University. Please call (123) 4444-3343
I want to make the number (123) 4444-3343
to a clickable one and taps it will have the user go to the calling mode.
I have tried following code:
textView.setAutoLinkMask(Linkify.PHONE_NUMBERS);
textView.setMovementMethod(LinkMovementMethod.getInstance());
It doesn't work at all. I only want the (123) 4444-3343 to be clickable. How can I achieve this? Thanks.
first option u have is to add in your XML
android:autoLink="phone"
to your textViewthe second option u have is to use Html.fromHtml
another way is to use ClickableSpan more info u can find here How to set the part of the text view is clickable and here