Lines Matching refs:contact

53     <dt>Match contact names</dt>
55 Retrieve a list of contacts by matching the search string to all or part of the contact
96 This technique tries to match a search string to the name of a contact or contacts in the
151 {@link android.support.v4.app.Fragment} to display the details for a contact that the user
175 {@link android.support.v4.app.LoaderManager.LoaderCallbacks}. Also, to help detect which contact
217 // Define variables for the contact the user selects
218 // The contact's _ID value
220 // The contact's LOOKUP_KEY
222 // A content URI for the selected contact
285 <h3 id="SetListener">Set the selected contact listener</h3>
288 single contact for further processing. For example, when the user clicks a contact you can
289 display the contact's address on a map. To provide this feature, you first defined the current
318 the {@link android.widget.ListView} displays the contact's display name,
319 which contains the main form of the contact's name. In Android 3.0 (API version 11) and later,
330 construct a content URI for the contact the user selects.
397 // Move to the selected contact
403 // Create the contact's content Uri
407 * the details for a contact.
506 You now have the key pieces of an app that matches a search string to contact names and returns
507 the result in a {@link android.widget.ListView}. The user can click a contact name to select it.
508 This triggers a listener, in which you can work further with the contact's data. For example,
509 you can retrieve the contact's details. To learn how to do this, continue with the next
524 of detail data associated with a contact. For example, you can retrieve contacts that have a
552 Set the selected contact listener.
613 // The contact's _ID, to construct a content URI
615 // The contact's LOOKUP_KEY, to construct a content URI
616 Data.LOOKUP_KEY (a permanent link to the contact
716 Retrieving a contact based on any type of data returns contacts if any of their data matches a
719 is "Doe", then searching for any data type returns the contact "John Doe"; it also returns
747 Set the selected contact listener.
816 People app's contact list screen.