Код: Выделить всё
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:911"));
startActivity(intent);
Подробнее здесь: https://stackoverflow.com/questions/370 ... phone-call
Код: Выделить всё
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:911"));
startActivity(intent);