[android-developers] Re: How to call an activity of other app from another app

2009-06-25 Thread Sujay Krishna Suresh
Intent i = new Intent(); //do all ur put extras set data's here... i.setComponent(new ComponentName(packageNameString, fullyQualifiedClassNameOfActivity )); startActivity(i); On Thu, Jun 25, 2009 at 11:29 AM, manoj manojkumar.m...@gmail.com wrote: can you show me some piece of code? Thanks,

[android-developers] Re: How to call an activity of other app from another app

2009-06-25 Thread 楊健
Sent: Thursday, June 25, 2009 3:04 PM To: android-developers@googlegroups.com Subject: [android-developers] Re: How to call an activity of other app from another app Intent i = new Intent(); //do all ur put extras set data's here... i.setComponent(new ComponentName(packageNameString

[android-developers] Re: How to call an activity of other app from another app

2009-06-25 Thread manoj
Hi, thanks for your help. Its working fine for me. Thank you very much. On Jun 25, 11:04 am, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: Intent i = new Intent(); //do all ur put extras set data's here... i.setComponent(new ComponentName(packageNameString,

[android-developers] Re: How to call an activity of other app from another app

2009-06-24 Thread Sujay Krishna Suresh
yes it is possible... make use of the setcomponentname method in ur intent... On Thu, Jun 25, 2009 at 11:16 AM, manoj manojkumar.m...@gmail.com wrote: Hi, How can I call an activity of app A from app B. Is it possible? if so how? Thanks, Manoj. -- Regards, Sujay Yogi Berra

[android-developers] Re: How to call an activity of other app from another app

2009-06-24 Thread manoj
can you show me some piece of code? Thanks, Manoj. On Jun 25, 10:49 am, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: yes it is possible... make use of the setcomponentname method in ur intent... On Thu, Jun 25, 2009 at 11:16 AM, manoj manojkumar.m...@gmail.com wrote: Hi, How