You need to raise a specially formed intention , for example:
Uri marketUri = Uri.parse("market://details?id=" + packageName); Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri); startActivity(marketIntent);
Where packageName will be the package name of your target application.
Konstantin burov
source share