I want to get a contacts image and display it in an imageview. I want this to work based on what contact the user chooses. I have a button that has the user press it and get contact phone number and display it in a text field. but now i need it to get a photo and display it. does anybody have an idea of how i can manipulate this to get photos? (ignore the logs that say email and my variables that say email, i manipulated the code so it gets phone numbers instead.)

case CONTACT_PICKER_RESULT:
                Cursor cursor = null;
                String email = "";
                try {
                    Bundle extras = data.getExtras();
                    Set<String> keys = extras.keySet();
                    Iterator<String> iterate = keys.iterator();
                    while (iterate.hasNext()) {
                        String key = iterate.next();
                        Log.v(DEBUG_TAG, key + "[" + extras.get(key) + "]");
                    }

                    Uri result = data.getData();
                    Log.v(DEBUG_TAG,
                            "Got a contact result: " + result.toString());

                    // get the contact id from the Uri
                    String id = result.getLastPathSegment();

                    // query for everything email
                    cursor = getContentResolver().query(Phone.CONTENT_URI,
                            null, Phone.CONTACT_ID + "=?", new String[] { id },
                            null);

                    int emailIdx = cursor.getColumnIndex(Phone.DATA);

                    // let's just get the first email
                    if (cursor.moveToFirst()) {

                        /*
                         * Iterate all columns. :) String columns[] =
                         * cursor.getColumnNames(); for (String column :
                         * columns) { int index = cursor.getColumnIndex(column);
                         * Log.v(DEBUG_TAG, "Column: " + column + " == [" +
                         * cursor.getString(index) + "]"); }
                         */

                        email = cursor.getString(emailIdx);

                        Log.v(DEBUG_TAG, "Got email: " + email);

                    } else {
                        Log.w(DEBUG_TAG, "No results");
                    }
                } catch (Exception e) {
                    Log.e(DEBUG_TAG, "Failed to get email data", e);
                } finally {
                    if (cursor != null) {
                        cursor.close();
                    }
                    EditText emailEntry = (EditText) findViewById(R.id.txtPhoneNo);
                    emailEntry.setText(email);
                    if (email.length() == 0) {
                        Toast.makeText(this, "No email found for contact.",
                                Toast.LENGTH_LONG).show();
                    }

                }

                break;
            }

        } else {
            Log.w(DEBUG_TAG, "Warning: activity result not ok");
        }
    }
link|improve this question

78% accept rate
droidnova.com/… – Droid Jan 30 at 4:22
That uses outdated methods – The Obliviator Jan 30 at 4:26
my target is 2.2 – The Obliviator Jan 30 at 4:27
Did you try my code? – Sameer Jan 30 at 6:48
I have been really busy, i haven't got a chance to try it, but i will soon please hold on. Thank You, and i will approve if it works. – The Obliviator Feb 7 at 5:34
feedback

2 Answers

Use it

 Uri conUri=Uri.parse(url);
        InputStream photoInputStream=Contacts.openContactPhotoInputStream(mContext.getContentResolver(), conUri);
        if(photoInputStream==null)
            return framePhoto(BitmapFactory.decodeResource(mContext.getResources(), R.drawable.ic_contact_list_picture));
        Bitmap photo=framePhoto(getPhoto(mContext.getContentResolver(), conUri));

And for more information go to this question

Load contact photo in a listview performance

link|improve this answer
Hmm are you sure that works??? Where should i put it because i dont think it works. – The Obliviator Feb 16 at 23:16
where ever you want to display contact image.Use bitmap photo and set where ever you want – Sameer Feb 17 at 4:15
feedback

Check out openContactPhotoInputStream(android.content.ContentResolver,android.net.Uri)in http://developer.android.com/reference/android/provider/ContactsContract.Contacts.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.