Dialing a phone call on click of textview in android

后端 未结 6 908
醉话见心
醉话见心 2020-12-03 01:05

I have a question that I want to dial a phone call when I click on a text view which also contain a phone number. But when I click on a Text view it returns an error as:

6条回答
  •  星月不相逢
    2020-12-03 01:49

    Change it to :callIntent.setData(Uri.parse("tel:"+phone_no));

    and i didnt add this: callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    but its working for me

提交回复
热议问题