0

I tried with this code, but it is not that I expect:

textView.setText("0 (800) 701 201");
Linkify.addLinks(textView, Linkify.PHONE_NUMBERS);

result:

enter image description here

Sinigami
  • 449
  • 3
  • 20
  • 38

1 Answers1

1

I suppose you are trying to make a call. Launch the intent to call like this...

Intent i = new Intent(Intent.ACTION_DIAL);
i.setData(Uri.parse("tel:9876543210");
startActivity(i);

Good Luck :)

Hemendra Sharma
  • 1,063
  • 9
  • 21