Rotary Heart
Rotary Heart

Reputation: 1969

Intent to open call in progress

What's the correct intent to go to the call in progress activity? Like the default lock screen have here:

enter image description here

Upvotes: 1

Views: 266

Answers (1)

Peshal
Peshal

Reputation: 1518

Check this out:

Intent intent = new Intent(Intent.ACTION_CALL_BUTTON);
startActivity(intent);

This will take you to the current call in progress activity

Upvotes: 1

Related Questions