Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.Intent; import android.net.Uri; public class Main { public static void goGoogleMarket(Context context) { Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse("market://search?q=" + context.getPackageName())); context.startActivity(i); } }