2

私はこのように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");

ただし、Googleプラスの連絡先もミックスに投げ込まれます。

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

どうすればこれを防ぐことができますか?

4

1 に答える 1

1

答えはとても簡単です。私はそれを見ませんでした。これが誰かを助けることを願っています。

    Cursor cursor = cr.query(
            ContactsContract.RawContacts.CONTENT_URI, null,
            RawContacts.ACCOUNT_TYPE + " IS ? AND "+ RawContacts.DATA_SET+" IS NULL",
            new String[] { "com.google", }, "display_name");
于 2012-06-10T10:03:44.177 に答える