Android explicit intent with target component

Viewed 39686

Is it possible to fire explicit intent but not for an activity from my project but for activity in some other application.

I am sure of this code and I know it is running

Intent i=new Intent(this,MyActivity.class);

But is it possible to do something like this

Intent i=new Intent(this,com.bzz.bla.bla.SomeActivity.class);

I mean what is the exact way of explicitly starting activity from other application (activity that is contained in other apk), is this possible at all ?

I tried but it drops me force close message.

5 Answers
Related