Starts Google Play application for this application. - Android App

Android examples for App:App Market

Description

Starts Google Play application for this application.

Demo Code


//package com.java2s;

import android.content.Context;
import android.content.Intent;

import android.net.Uri;

public class Main {
    /**/*w ww  . j a v a2 s  .com*/
     * 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)));
        }
    }
}

Related Tutorials