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