ACTION_DIAL
API 1
ACTION_DIAL
. , . , .
. , , getData() - URI , , tel: URI .
: .
: android.intent.action.DIAL
ACTION_CALL
API 1
ACTION_CALL
. -, .
: , ; else getData() - URI , , tel: URI .
: .
- , ;
ACTION_DIAL. - .
ACTION_DIAL. - android M
CALL_PHONE
, ,
SecurityException.
: android.intent.action.CALL
( , ):
String number = "7777777777";
Uri call = Uri.parse("tel:" + number);
Intent surf = new Intent(Intent.ACTION_DIAL, call);
startActivity(surf);
( android.permission.CALL_PHONE), :
String number = "7777777777";
Uri call = Uri.parse("tel:" + number);
Intent surf = new Intent(Intent.ACTION_CALL, call);
startActivity(surf);