Reputation: 7238
I'm working on my first Android app, and wondering what call I can make to show this "contact pane":
I am of course, referring to the little pane with the contact's photo, name, and the action icons underneath.
As a related question... what is the official name for this little popup window?
Upvotes: 1
Views: 337
Reputation: 69208
You should use showQuickContact(). As you may have guessed the name of this widget is QuickContact dialog.
Upvotes: 1
Reputation: 11408
The name is QuickContact and there are some helper methods in android.provider.ContactsContract.QuickContact you can use including:
showQuickContact(Context context, View target, Uri lookupUri, int mode, String[] excludeMimes)
Documentation: http://developer.android.com/reference/android/provider/ContactsContract.QuickContact.html
Upvotes: 1