How can I make call by pressing button? I get my number as a string from EditText. Here is my sample code:
call
EditText
String phone = editPhone
String PhoneNo="+923341234567" Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + PhoneNo)); startActivity(intent);
and add a permission in manifest