Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

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

public class Main {
    public static void createShortcut(Context context, String shortcutName, int drawableResId,
            Intent shortcutIntent) {
        Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
        shortcutintent.putExtra("duplicate", false);
        shortcutintent.putExtra("android.intent.extra.shortcut.NAME", shortcutName);
        shortcutintent.putExtra("android.intent.extra.shortcut.ICON_RESOURCE",
                Intent.ShortcutIconResource.fromContext(context, drawableResId));
        shortcutintent.putExtra("android.intent.extra.shortcut.INTENT", shortcutIntent);
        context.sendBroadcast(shortcutintent);
    }
}