Lines Matching refs:Provider
12 <li><a href="#Permissions">Request Permission to Read the Provider</a>
23 Content Provider Basics</a>
27 Contacts Provider</a>
56 name data. The Contacts Provider allows multiple instances of the same name, so this
76 Provider. A {@link android.support.v4.content.CursorLoader} runs its query on a
82 <h2 id="Permissions">Request Permission to Read the Provider</h2>
84 To do any type of search of the Contacts Provider, your app must have
97 Contact Provider's {@link android.provider.ContactsContract.Contacts} table. You usually want
163 To help you write queries against the Contacts Provider, the Android framework provides a
477 when the Contacts Provider returns the results of the query. In this method, put the
518 Contacts Provider.
534 Request Permission to Read the Provider.
597 Contacts Provider does an implicit join between {@link android.provider.ContactsContract.Data}
728 Request Permission to Read the Provider.
783 You don't need to convert the search string into a pattern, because the Contacts Provider does
813 These code snippets are the basis of an app that does a broad search of the Contacts Provider.