HI,
I am able to get the contact cursor using the following:
Cursor cursor = context.getContentResolver().query(People.CONTENT_URI, n
This is untested, but perhaps something like this?
Cursor cursor2 = context.getContentResolver().query(ContactMethods.CONTENT_EMAIL_URI, new String[] { ContactMethods.DATA }, "contact_methods._id=?", new String[] { emailID }, null);