Reputation: 1969
What's the correct intent to go to the call in progress activity? Like the default lock screen have here:
Upvotes: 1
Views: 266
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