Re: [android-developers] Re: call an activity of another package

2016-05-24 Thread TreKing
On Mon, May 23, 2016 at 1:19 AM, Arun Kumar wrote: > i have a package name as well as class name but i cant open that package > with particular activity... > How do i done ? > Use an intent that the other app has published as an expected interface for interacting with

[android-developers] Re: call an activity of another package

2016-05-23 Thread Arun Kumar
friends please kindly help me.. i have a package name as well as class name but i cant open that package with particular activity... How do i done ? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop

Re: [android-developers] Re: call an activity of another package

2009-12-09 Thread nvstp
Thanks very much. It helps me a lot. [?][?][?][?][?][?] On Tue, Dec 1, 2009 at 08:30, dane131 orestis...@gmail.com wrote: oh mate you were right..just fixed this i.setComponent(new ComponentName (aexp.share.sharedapp2,aexp.share.sharedapp2.SharedApp2)); and it worked...thought that the

[android-developers] Re: call an activity of another package

2009-11-30 Thread jotobjects
Looks like you are telling it that class SharedApp2 is in package aexp.share.sharedapp1 - which is probably not correct. Can you include the exception stack for the error in your post? On Nov 30, 3:40 pm, dane131 orestis...@gmail.com wrote: hallo, i have an activity named SharedApp1 in the  

[android-developers] Re: call an activity of another package

2009-11-30 Thread dane131
oh mate you were right..just fixed this i.setComponent(new ComponentName (aexp.share.sharedapp2,aexp.share.sharedapp2.SharedApp2)); and it worked...thought that the first parameter was a reference to the package we are in.. On Dec 1, 2:20 am, jotobjects jotobje...@gmail.com wrote: Looks like