Binesy wrote: > Hi > > I was wondering is it posible to launch other applications within an > activity, such as the native contacts application? If so how do you > do this?
startActivity(), with an Intent that will launch whatever it is you want. For example, if you want the user to choose a contact, you would use an ACTION_PICK Intent with the contacts Uri. -- Mark Murphy (a Commons Guy) http://commonsware.com Android Training on the Ranch! -- Mar 16-20, 2009 http://www.bignerdranch.com/schedule.shtml --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

