2
if (groupId == 0) {
        final ContentValues contentValues = new ContentValues();
        contentValues.put(Groups.ACCOUNT_NAME, account.name);
        contentValues.put(Groups.ACCOUNT_TYPE, account.type);
        contentValues.put(Groups.TITLE, SAMPLE_GROUP_NAME);
        contentValues.put(Groups.GROUP_IS_READ_ONLY, true);

        final Uri newGroupUri = context.getContentResolver().insert(Groups.CONTENT_URI, contentValues);
        groupId = ContentUris.parseId(newGroupUri);
    }

これらのコード行は、Android Developer Webサイト(sdk api 16のサンプル)からダウンロードしたプロジェクトSampleSyncAdapterのクラスContactManagerにあります。

私の問題はそれです

context.getContentResolver().insert(Groups.CONTENT_URI, contentValues);

この行は常にnullを返します。なぜ、そしてこの問題の解決策は何ですか..、。

4

0 に答える 0