-2

what i want is onclick in name = textview it pop up a window with 2 buttons 1 button for phone call and other button for sms.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62

1 Answers1

0

first google about it. What is alertdialog box then by using on button click make a call by using

Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phone1.getText().toString()));

where phone1 is a EditText and send SMS like

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("sms:" + phoneNumber));     
intent.putExtra("sms_body", message); 
startActivity(intent);

hope you got want you want

AMAN SINGH
  • 3,491
  • 6
  • 28
  • 44