Is it possible to launch another application while inside an application? Is there any other solution to launch another application?
I used this code to call another application from my launching application
Intent LaunchIntent = new Intent(Intent.ACTION_MAIN);
LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.exaple.sampleapp");
startActivity(LaunchIntent);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…