Experts,

I try to retrieve the contact information from
android.provider.Contacts.People.CONTENT_URI in my Activity
application. However,  the query always gives me error. Any idea why?

The code is like:

 String[] projection = new String[] {
                        android.provider.Contacts.People.NAME,
                        android.provider.Contacts.People.NUMBER
        };

        Cursor cur =
this.managedQuery(android.provider.Contacts.People.CONTENT_URI,
projection, null, null, null);



Thanks

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to