本文整理匯總了Java中android.provider.ContactsContract.Contacts.STARRED屬性的典型用法代碼示例。如果您正苦於以下問題:Java Contacts.STARRED屬性的具體用法?Java Contacts.STARRED怎麽用?Java Contacts.STARRED使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類android.provider.ContactsContract.Contacts
的用法示例。
在下文中一共展示了Contacts.STARRED屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: queryAllContacts
/**
* Synchronously query for contacts in the Contacts
* ContentProvider.
*/
public Cursor queryAllContacts(ContentResolver cr) {
// Columns to query.
final String columnsToQuery[] =
new String[] {
ContactsContract.Contacts._ID,
ContactsContract.Contacts.DISPLAY_NAME,
ContactsContract.Contacts.STARRED
};
// Contacts to select.
final String selection =
"(("
+ Contacts.DISPLAY_NAME
+ " NOTNULL) AND ("
+ Contacts.DISPLAY_NAME
+ " != '' ) AND ("
+ Contacts.STARRED
+ "== 1))";
// Perform a synchronous (blocking) query on the
// ContactsContentProvider.
return cr.query(ContactsContract.RawContacts.CONTENT_URI,
columnsToQuery,
selection,
null,
ContactsContract.Contacts._ID
+ " ASC");
}
示例2: execute
/**
* Asynchronously query the contacts based on selection
* criteria.
*/
@Override
public void execute() {
// Columns to query.
final String columnsToQuery[] =
new String[] {
ContactsContract.Contacts._ID,
ContactsContract.Contacts.DISPLAY_NAME,
ContactsContract.Contacts.STARRED
};
// Contacts to select.
final String selection =
"(("
+ Contacts.DISPLAY_NAME
+ " NOTNULL) AND ("
+ Contacts.DISPLAY_NAME
+ " != '' ) AND ("
+ Contacts.STARRED
+ "== 1))";
// Initiate an asynchronous query.
getArgs().getAdapter()
.startQuery(this,
0,
ContactsContract.Contacts.CONTENT_URI,
columnsToQuery,
selection,
// ContactsContract.Contacts.STARRED /* + "= 0" */,
null,
ContactsContract.Contacts._ID
+ " ASC");
}
示例3: onCreateLoader
/**
* This hook method is called back by the LoaderManager when the
* LoaderManager is initialized.
*/
public Loader<Cursor> onCreateLoader(int id,
Bundle args) {
// Columns to query.
final String columnsToQuery[] =
new String[] {
ContactsContract.Contacts._ID,
ContactsContract.Contacts.DISPLAY_NAME,
ContactsContract.Contacts.STARRED
};
// Contacts to select.
final String selection =
"(("
+ Contacts.DISPLAY_NAME
+ " NOTNULL) AND ("
+ Contacts.DISPLAY_NAME
+ " != '' ) AND ("
+ Contacts.STARRED
+ "== 1))";
// Create a new CursorLoader that will perform the query
// asynchronously.
return new CursorLoader(mOps.getActivityContext(),
ContactsContract.Contacts.CONTENT_URI,
columnsToQuery,
selection,
null,
Contacts._ID
+ " ASC");
}