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 want to read the mailing address from a contact the user selects.

So I send an Intent:

final Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType(ContactsContract.CommonDataKinds.StructuredPostal.CONTENT_TYPE);
AddressEditor.this.startActivityForResult(intent, AddressEditor.this.REQUESTCODE_SELECT_CONTACT_ADDRESS);

and receive a result:

@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data)
{
    super.onActivityResult(requestCode, resultCode, data);
    if (resultCode == RESULT_OK)
    {
      switch (requestCode)
      {
      case REQUESTCODE_SELECT_CONTACT_ADDRESS:
        final Uri contactData = data.getData();
        final Cursor cursor = this.managedQuery(contactData, null, null, null, null);
        if (cursor.moveToFirst())
        {
            final String name = ursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.Contacts.DISPLAY_NAME));
            final String street = ursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.StructuredPostal.STREET));
            final String zip = ursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.StructuredPostal.POSTCODE));
            final String city = ursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.StructuredPostal.CITY));
            final String country = cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.StructuredPostal.COUNTRY));
            // do some work with the mailing address
        }
      }
    }
}

This worked well until I tried it on android 4. Here the user only enters a full textblock as the address. Not like in android 2 where you had different textboxes.

What happens now is that my code you see there now returns the full address as the street, the others (zip, city, country) are returning null.

Is there another way to read the seperate parts of the mailing address of a contact in android 4?

Thanks and Greets

Xeno Lupus

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.