From my application i have to open a another one application.Is there any possibility to open like this?
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 }