I am new to Android programming and I'm working on an Activity in an app that will plot the location of contacts from a specific email account on to a map. The following is what I am using to get the contact info I want when plotting the location on a map. I have tested this and it works.

my class file:

import java.util.ArrayList;
import java.util.List;
import com.google.android.maps.GeoPoint;

import android.database.Cursor;
import android.location.Address;
import android.location.Geocoder;
import android.provider.ContactsContract;
import android.content.ContentResolver;
import android.content.Context;

public class Contacts {
    ArrayList<String>  nameList = new ArrayList<String>();
    ArrayList<String>  locList = new ArrayList<String>();
    ArrayList<GeoPoint> geoList = new ArrayList<GeoPoint>();
    Context context = null;
    Geocoder gc;

    private String getContactName(String id){
        String name = null;

        ContentResolver nmCr = context.getContentResolver();
        String selection = ContactsContract.Contacts._ID + " = ?"; 
        String[] selectionArgs = new String[]{id}; 
        String[] projection = new String[]{
                                    ContactsContract.Contacts.DISPLAY_NAME
                                  }; 
        Cursor nmCur = nmCr.query(ContactsContract.Contacts.CONTENT_URI,
                projection, selection, selectionArgs, null);
        if (nmCur.getCount() > 0)
        {
            while (nmCur.moveToNext())
            {
                    //if the account is under com.android.exchange and not com.google
                        // Pick out the ID, and the Display name of the
                        // contact from the current row of the cursor
                         name = nmCur.getString(nmCur.getColumnIndex(
                                            ContactsContract.Contacts.DISPLAY_NAME));
            }
        }
        nmCur.close();
        return name;
    }

    public String getContactLocations(String id){
        String addr = null;

        ContentResolver addrCr = context.getContentResolver();
        String selection = ContactsContract.CommonDataKinds.StructuredPostal.CONTACT_ID + " = ?"; 
        String[] selectionArgs = new String[]{id}; 
        String[] projection = new String[]{
                                    ContactsContract.CommonDataKinds.StructuredPostal.STREET,
                                    ContactsContract.CommonDataKinds.StructuredPostal.CITY,
                                    ContactsContract.CommonDataKinds.StructuredPostal.REGION,
                                    ContactsContract.CommonDataKinds.StructuredPostal.POSTCODE
                                  }; 
        Cursor addrCur = addrCr.query(ContactsContract.CommonDataKinds.StructuredPostal.CONTENT_URI, 
                projection, selection, selectionArgs, null); 
        if (addrCur.getCount() > 0)
        {
            while(addrCur.moveToNext()) {
                addr = addrCur.getString(
                             addrCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredPostal.STREET));
                addr += " " + addrCur.getString(
                             addrCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredPostal.CITY));
                addr += " " + addrCur.getString(
                        addrCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredPostal.REGION));
                addr += " " + addrCur.getString(
                             addrCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredPostal.POSTCODE));
            }
        }
        addrCur.close();
        return addr;
    }

    public  GeoPoint getContactGeo(String addr){
        GeoPoint p = null;
        gc = new Geocoder(context); //create new geocoder instance
        try {
            List<Address> foundAdresses =  gc.getFromLocationName(addr, 5); //Search addresses
            for (int i = 0; i < foundAdresses.size(); ++i) {
              //Save results as Longitude and Latitude
              Address x = foundAdresses.get(i);
              p = new GeoPoint((int)(x.getLatitude() * 1E6),(int)(x.getLongitude() * 1E6));
            }
          }
          catch (Exception e) {
                e.printStackTrace();
          }
            return p;
    }

    public void getContactNames( Context context, String email){
        this.context = context;

            ContentResolver cr = context.getContentResolver();
            String[] projection = new String[]{
                                        ContactsContract.RawContacts.CONTACT_ID
                                      };
            String selection = ContactsContract.RawContacts.ACCOUNT_NAME + " = ? AND " + ContactsContract.RawContacts.ACCOUNT_TYPE + " = ?"; 
            String[] selectionArgs = new String[]{
                                            email,
                                            "com.android.exchange"  
                                         };  
            Cursor cur = cr.query(ContactsContract.RawContacts.CONTENT_URI,
                    projection, selection, selectionArgs, null);
            if (cur.getCount() > 0)
            {
                while (cur.moveToNext())
                    {
                            String id = cur.getString(cur.getColumnIndex(ContactsContract.RawContacts.CONTACT_ID));
                             nameList.add(
                                    getContactName(id)
                            );
                            String addr = getContactLocations(id);

                             locList.add(addr);
                            geoList.add(getContactGeo(addr));
                }
            }
            cur.close();
    }
}

However with MotoBlur, this will not work. The Owner comes up as Phone and the account type as com.motorola.android.buacontactadapter. My co-worker found This link: MOTOBLUR Contacts 1.x Release Notes which tells who you can get contact info, but it doesn't give any idea of how to differentiate which contacts go with which accounts. Has anybody been able to do something like this and possibly give me some idea of what type of query to put together or which direction to go?

link|improve this question
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.