Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.Intent; import android.net.Uri; public class Main { /** * Starts Google Play application for this application. * @param context */ public static void startGooglePlay(Context context) { final String appPackageName = context.getPackageName();// context.getPackageName(); // // // getPackageName() // from Context // or Activity // object try { context.startActivity( new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName))); } catch (android.content.ActivityNotFoundException anfe) { context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName))); } } }