I want my Android app to open the native dialer, so that the user can choose a contact to call.
I know how to open the native dialer app from my application. Something like this opens it at the KEYPAD screen.
Intent i = new Intent();
i.setAction("android.intent.action.DIAL");
i.setData(Uri.parse("tel:1234567890"));
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
But I want to open it at the screen which has the favorites / call history / contacts tabs and the search box (I'm not sure what this screen is called).
Is there an intent that would open the native dialer here, instead of opening it at the keypad screen. The user can press back from the keypad screen to get to where I want them, but that is an extra step I don't want them to have to do.
Thanks NickB