I call a Action_Dial as:
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.parse("tel:"));
startActivity(callIntent);
It show screen with 4 tab : Phone, Call Log, Contacts, Favorites.
But It open start with tab Phone.
I want start with tab Call Log.
Can you help me? Thanks.
Try with this.
It will open Call Log Screen.