From my application i have to open a another one application.Is there any possibility to open like this?
You can launch other applications with Activity.startActivity( intent);
Use it like this:
Intent intent = new Intent();
String pkg = "com.android.browser";
String cls = "com.android.browser.BrowserActivity";
intent.setClassName(pkg, cls);
startActivity(intent);
You need to know the package and class names of the activity to call, the Package Browser in the Dev Tools app will help here if its not your own app to call.