Open another one application from our application?

android

Solution

You should use the function of the package manager.

try {
    Intent i = ctx.getPackageManager().getLaunchIntentForPackage("com.android.browser");
    ctx.startActivity(i);
} catch (NameNotFoundException e) {
    // TODO Auto-generated catch block
}

Problem

From my application i have to open a another one application.Is there any possibility to open like this?

Original source

Related problems