本文整理汇总了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");
}