Contacts.Intents
public
static
final
class
Contacts.Intents
extends Object
java.lang.Object | |
↳ | android.provider.Contacts.Intents |
This class was deprecated
in API level 5.
see ContactsContract
Contains helper classes used to create or manage Intents
that involve contacts.
Summary
Nested classes | |
---|---|
class |
Contacts.Intents.Insert
This class was deprecated
in API level 5.
see |
class |
Contacts.Intents.UI
This class was deprecated in API level 5. Do not use. This is not supported. |
Constants | |
---|---|
String |
ATTACH_IMAGE
This constant is deprecated.
see |
String |
EXTRA_CREATE_DESCRIPTION
This constant was deprecated
in API level 5.
see |
String |
EXTRA_FORCE_CREATE
This constant was deprecated
in API level 5.
see |
String |
SEARCH_SUGGESTION_CLICKED
This constant is deprecated.
see |
String |
SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED
This constant is deprecated.
see |
String |
SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED
This constant is deprecated.
see |
String |
SHOW_OR_CREATE_CONTACT
This constant was deprecated
in API level 5.
see |
Public constructors | |
---|---|
Intents()
This constructor is deprecated.
see |
Inherited methods | |
---|---|
Constants
ATTACH_IMAGE
public static final String ATTACH_IMAGE
This constant is deprecated.
see ContactsContract
Starts an Activity that lets the user pick a contact to attach an image to. After picking the contact it launches the image cropper in face detection mode.
Constant Value: "com.android.contacts.action.ATTACH_IMAGE"
EXTRA_CREATE_DESCRIPTION
public static final String EXTRA_CREATE_DESCRIPTION
This constant was deprecated
in API level 5.
see ContactsContract
Used with SHOW_OR_CREATE_CONTACT
to specify an exact
description to be shown when prompting user about creating a new
contact.
Type: STRING
Constant Value: "com.android.contacts.action.CREATE_DESCRIPTION"
EXTRA_FORCE_CREATE
public static final String EXTRA_FORCE_CREATE
This constant was deprecated
in API level 5.
see ContactsContract
Used with SHOW_OR_CREATE_CONTACT
to force creating a new
contact if no matching contact found. Otherwise, default behavior is
to prompt user with dialog before creating.
Type: BOOLEAN
Constant Value: "com.android.contacts.action.FORCE_CREATE"
SEARCH_SUGGESTION_CLICKED
public static final String SEARCH_SUGGESTION_CLICKED
This constant is deprecated.
see ContactsContract
This is the intent that is fired when a search suggestion is clicked on.
Constant Value: "android.provider.Contacts.SEARCH_SUGGESTION_CLICKED"
SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED
public static final String SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED
This constant is deprecated.
see ContactsContract
This is the intent that is fired when a search suggestion for creating a contact is clicked on.
Constant Value: "android.provider.Contacts.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED"
SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED
public static final String SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED
This constant is deprecated.
see ContactsContract
This is the intent that is fired when a search suggestion for dialing a number is clicked on.
Constant Value: "android.provider.Contacts.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED"
SHOW_OR_CREATE_CONTACT
public static final String SHOW_OR_CREATE_CONTACT
This constant was deprecated
in API level 5.
see ContactsContract
Takes as input a data URI with a mailto: or tel: scheme. If a single contact exists with the given data it will be shown. If no contact exists, a dialog will ask the user if they want to create a new contact with the provided details filled in. If multiple contacts share the data the user will be prompted to pick which contact they want to view.
For mailto:
URIs, the scheme specific portion must be a
raw email address, such as one built using
Uri#fromParts(String, String, String)
.
For tel:
URIs, the scheme specific portion is compared
to existing numbers using the standard caller ID lookup algorithm.
The number must be properly encoded, for example using
Uri#fromParts(String, String, String)
.
Any extras from the Insert
class will be passed along to the
create activity if there are no contacts to show.
Passing true for the EXTRA_FORCE_CREATE
extra will skip
prompting the user when the contact doesn't exist.
Constant Value: "com.android.contacts.action.SHOW_OR_CREATE_CONTACT"
Public constructors
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-04 UTC.