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
Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:" +"93"); intent.setData(Uri.parse(uri)); startActivity(intent);