If I use the Android Phone app to call, the app shows a photo from the contact that I am calling.
But, if I use an intent to call the Phone app (below code), there is no photo.
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:1234567890"));
startActivity(callIntent);
How do I show the contact's photo when calling?
Thanks!