Home | History | Annotate | Download | only in contacts-provider

Lines Matching full:retrieve

12   <li><a href="#RetrieveAll">Retrieve All Details for a Contact</a></li>
13 <li><a href="#RetrieveSpecific">Retrieve Specific Details for a Contact</a></li>
43 This lesson shows how to retrieve detail data for a contact, such as email addresses, phone
44 numbers, and so forth. It's the details that users are looking for when they retrieve a contact.
51 The <a href="retrieve-names.html">Retrieving Contact Names</a> lesson shows how to
52 retrieve a list of contacts.
54 <h2 id="RetrieveAll">Retrieve All Details for a Contact</h2>
56 To retrieve all the details for a contact, search the
63 in more detail in the <a href="retrieve-names.html">Retrieving Contact Names</a> lesson.
67 device, because it needs to retrieve all of the columns in the
87 column names to your projection. Always retrieve
90 won't work. Also retrieve {@link android.provider.ContactsContract.Data#MIMETYPE Data.MIMETYPE}
91 so you can identify the data type of each row you retrieve. For example:
181 When you're ready to retrieve the rows, initialize the loader framework by
281 <h2 id="RetrieveSpecific">Retrieve Specific Details for a Contact</h2>
285 listed in <a href="#RetrieveAll">Retrieve All Details for a Contact</a>:
292 Modify your projection to retrieve the columns that are specific to the
319 Define the columns you want to retrieve, using the column name constants in the subclass
322 be sure to retrieve the <code>_ID</code> column. For example, to retrieve email data, define the