I have a text view that has telephone numbers as its text, I want when the user clicks on the telephone number the application calls the number, I was able to do that using android's Linkify.addLinks
method, but this only works when there is only one telephone number in the text view, but when there is two numbers it is not working, the two numbers come in the following format:
"94225445454 / 621189452"
The Linkify.addLinks
only makes one number clickable and the other is not, anybody knows how to fix that?
Thanks in advance.