Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a button that lets a user choose a contact from their phone.

Using the basic info given from the android examples and a little digging I came up with this method

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data)
    {
        if (data != null)
        {
            Uri contactData = data.getData();
            if (contactData != null)
            {
                Cursor c = null;
                try
                {
                    c = getContentResolver().query(contactData, null, null, null, null);
                    if (c != null && c.moveToFirst())
                    {
                        String name = c.getString(c.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
                        String phone = c.getString(c.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));

                        mEditTextName.setText(name);
                        mEditTextPhone.setText(phone);
                    }
                } finally
                {
                    if (c != null)
                    {
                        c.close();
                    }
                }
            }
        }
    }

The issue is when a contact has been imported from Facebook, the cursor has no rows.

Does anyone know how to over come this, and get the person's name and phone number?

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.