Calling an extrenal application
问题 How can I call an external application from my application? E.g: I need to call Shazam (application) from my app. I can see the package name of the application in the logcat . will that be useful for any purpose? 回答1: You can call a third party application's activity in the following way. final Intent shazamIntent = new Intent("com.shazam.android"); shazamIntent .setComponent(new ComponentName("com.shazam.android","com.shazam.android.Splash")); startActivity(shazamIntent ); But, this is not a