tags:

views:

87

answers:

1

HI,

I have 2 projects (each has its own apk). Can you please tell me how can I launch an activity which is in another apk that I created? I have this activity which I want to launch from another project: // what should I put in here so that I can launch this from another activity in another project?

+1  A: 

You would have to implement an Intent interface. I.e. have your activities respond to specific Intents specified via Intent-filters in your manifest. Have a look at this page:

http://android-developers.blogspot.com/2009/11/integrating-application-with-intents.html

Mads Kristiansen