我正在像这样从 Android 中的 Google 帐户读取 RawContacts。
final Cursor cursor = cr.query(
ContactsContract.RawContacts.CONTENT_URI, null,
RawContacts.ACCOUNT_TYPE + " = ?",
new String[] { "com.google" }, "display_name");
Log.i(TAG, "Start RawContact table");
for (int i = 0; i < cursor.getColumnCount(); i++) {
Log.d(TAG, i + " : " + cursor.getColumnName(i) + " : "
+ cursor.getString(i) + "\n");
}
Log.i(TAG, "End RawContact table");
然而,谷歌加联系人也被卷入其中。
06-10 15:05:11.139: D/Merger(20004): 13 : account_type : com.google
06-10 15:05:11.139: D/Merger(20004): 14 : account_type_and_data_set : com.google/plus
我怎样才能防止这种情况?