Opening Google Play store on a specific app is pretty straight forward using something like
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=MyApp")));
This will open the Play Store, but the user will still have to click the download link. Is it possible to tell the Play Store that the intent is not to view the app, but to download the app? It's fine if the Play Store still asks the user for confirmation, but I just want to skip the part of showing the user the whole app again - something he already knows he wants.