Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying for updating a contact photo in android through code.Using content values and content resolver I've tried to update the photo.Update query's added in code snippet.But nothing happens.My code snippet is below.

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    // TODO Auto-generated method stub
    super.onActivityResult(requestCode, resultCode, data);

    if (requestCode == 1 && data != null) {
        Uri contactData = data.getData();
        System.out.println("contactData is........." + contactData);
        final Cursor c = getApplicationContext().getContentResolver() .query(contactData, null, null, null, null);

        if (c.moveToFirst()) {
            int indexName = c .getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);
            indexNumber = c.getColumnIndex(Data._ID);

            System.out.println("columnnames" + c.getColumnNames());
            String nom = c.getString(indexName);
            System.out.println("nom is......" + nom);

            System.out.println("indexName is....." + indexName);
            System.out.println("indexNumber is...." + indexNumber);

            String numero = c.getString(indexNumber);
            System.out.println("numero" + c.getString(indexNumber));

            // Visual confirm
            Toast.makeText(this, "Contact " + nom + " enregistré!", Toast.LENGTH_LONG).show();

            ContentValues values = new ContentValues();
            ByteArrayOutputStream streamy = new ByteArrayOutputStream();

            bMap.compress(CompressFormat.PNG,0,streamy);
            byte[] photo1 = streamy.toByteArray();
            values.put(Photo.PHOTO, photo1);
            values.put(Data.MIMETYPE, Photo.CONTENT_ITEM_TYPE);
            String where = "ContactsContract.Data._ID =" + c.getString(indexNumber);
            ContentResolver cr = getContentResolver();
            cr.update(contactData, values, where, null);
        }
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.