Can you please help me find out how to call 911 without going through the Dialer user interface in Android?
I used the below code..but it's going through Dialer. I want to call directly to emergency number through my application.
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:911"));
startActivity(intent);