Hi Satya,

On Sun, Nov 9, 2008 at 2:09 PM, Satya Komatineni
<[EMAIL PROTECTED]> wrote:
> I have used the following code
> public static void invokePick(Activity activity)
> {
> Intent pickIntent = new Intent(Intent.ACTION_PICK);
> pickIntent.setData(Contacts.CONTENT_URI);
> activity.startActivityForResult(pickIntent, 1);
> }
> I get an exception that no activity found matching this criteria.
> Satya

look at this:

        Intent i= new Intent(Intent.ACTION_PICK,People.CONTENT_URI);
        startActivityForResult(i,PICK_CONTACT_FROM_LIST);

--~--~---------~--~----~------------~-------~--~----~
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