1

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);
Kevin Coppock
  • 133,643
  • 45
  • 263
  • 274
user564565
  • 11
  • 2

2 Answers2

3

A search through existing questions provides the answer to this one as well as the two you asked yesterday: Dial Number Without Prompt

Community
  • 1
  • 1
Blumer
  • 5,005
  • 2
  • 33
  • 47
0

I think you need to add premission in mainfest file to use action_call.