Lines Matching full:link
50 {@link android.provider.ContactsContract.Contacts} row for a contact the user has picked.
57 {@link android.provider.ContactsContract.Data} table for any rows that contain the contact's
58 {@link android.provider.ContactsContract.Data#LOOKUP_KEY}. This column is available in
59 the {@link android.provider.ContactsContract.Data} table, because the Contacts
60 Provider makes an implicit join between the {@link android.provider.ContactsContract.Contacts}
61 table and the {@link android.provider.ContactsContract.Data} table. The
62 {@link android.provider.ContactsContract.Contacts#LOOKUP_KEY} column is described
68 {@link android.provider.ContactsContract.Data} table. Consider the performance impact before
74 {@link android.Manifest.permission#READ_CONTACTS READ_CONTACTS} permission.
88 {@link android.provider.ContactsContract.Data#_ID Data._ID} if you're binding the result
89 {@link android.database.Cursor} to a {@link android.widget.ListView}; otherwise, the binding
90 won't work. Also retrieve {@link android.provider.ContactsContract.Data#MIMETYPE Data.MIMETYPE}
117 {@link android.provider.ContactsContract.Data} table, using the column names defined in
118 the {@link android.provider.ContactsContract.Data} class.
122 {@link android.provider.ContactsContract.Data} class. Notice, however, that the columns
123 {@link android.provider.ContactsContract.DataColumns#SYNC1} through
124 {@link android.provider.ContactsContract.DataColumns#SYNC4} are meant to be used by sync
131 the {@link android.provider.ContactsContract.Contacts#LOOKUP_KEY Contacts.LOOKUP_KEY} column to
154 Define the sort order you want in the resulting {@link android.database.Cursor}. To
156 {@link android.provider.ContactsContract.Data#MIMETYPE Data.MIMETYPE}. This query argument
167 Instead, you have to iterate through the returned {@link android.database.Cursor},
176 {@link android.support.v4.app.LoaderManager} class and the
177 {@link android.support.v4.app.LoaderManager.LoaderCallbacks} interface to do background
182 calling {@link android.support.v4.app.LoaderManager#initLoader initLoader()}. Pass an
184 {@link android.support.v4.app.LoaderManager.LoaderCallbacks} methods. The identifier helps you
210 Implement the {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onCreateLoader
212 {@link android.support.v4.app.LoaderManager#initLoader initLoader()}. Return a
213 {@link android.support.v4.content.CursorLoader} from this method. Since you're searching
214 the {@link android.provider.ContactsContract.Data} table, use the constant
215 {@link android.provider.ContactsContract.Data#CONTENT_URI Data.CONTENT_URI} as the content URI.
242 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished onLoadFinished()}
244 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished onLoadFinished()}
262 The method {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoaderReset
264 {@link android.database.Cursor} has changed. At this point, remove any existing references
265 to the {@link android.database.Cursor} by setting them to null. If you don't, the loader
266 framework won't destroy the old {@link android.database.Cursor}, and you'll get a memory
294 {@link android.provider.ContactsContract.CommonDataKinds} subclass corresponding to the
302 {@link android.provider.ContactsContract.Data#MIMETYPE MIMETYPE} value that's specific to
310 {@link android.database.Cursor} by {@link android.provider.ContactsContract.Data#MIMETYPE
320 of {@link android.provider.ContactsContract.CommonDataKinds} for the data type.
321 If you plan to bind your {@link android.database.Cursor} to a {@link android.widget.ListView},
336 {@link android.provider.ContactsContract.CommonDataKinds.Email}, instead of the column names
337 defined in the class {@link android.provider.ContactsContract.Data}. Using the email-specific
342 {@link android.provider.ContactsContract.CommonDataKinds} subclass.
347 {@link android.provider.ContactsContract.Data#LOOKUP_KEY} and the
348 {@link android.provider.ContactsContract.Data#MIMETYPE Data.MIMETYPE} of the details you
349 want. Enclose the {@link android.provider.ContactsContract.Data#MIMETYPE MIMETYPE} value in
370 Define a sort order for the returned {@link android.database.Cursor}. Since you're retrieving a
371 specific data type, omit the sort on {@link android.provider.ContactsContract.Data#MIMETYPE}.
374 {@link android.provider.ContactsContract.CommonDataKinds.Email#TYPE Email.TYPE}: