如何以编程方式在Android中创建另一个应用程序的快捷方式?

时间:2013-11-14 12:41:21

标签: android

假设我有一些Android应用程序可以帮助用户安装其他一些应用程序。有没有办法在主屏幕上创建此应用程序的快捷方式?我还可以指定这些快捷方式的位置吗?

4 个答案:

答案 0 :(得分:1)

试试这个:

public void createShortCut() {
    Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
    shortcutintent.putExtra("duplicate", false);
    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.shortcutname));
    Parcelable icon = Intent.ShortcutIconResource.fromContext(getApplicationContext, R.drawable.icon);
    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent("com.whatsapp"));
    sendBroadcast(shortcutintent);
}

答案 1 :(得分:-1)

一种方法是创建一个小部件。但是,用户必须再次将小部件放在他的主屏幕上才能工作。

答案 2 :(得分:-1)

有点改进的版本:我们正在检查是否已经创建了快捷方式 如果用户将其从屏幕中删除,则不得创建

final static private String PREF_KEY_SHORTCUT_ADDED = "PREF_KEY_SHORTCUT_ADDED";

    @Override
    public void onStart(){
        super.onStart();

// Checking if ShortCut was already added
        sharedPreferences = getPreferences(MODE_PRIVATE);
        boolean shortCutWasAlreadyAdded = sharedPreferences.getBoolean(PREF_KEY_SHORTCUT_ADDED, false);
        if (!shortCutWasAlreadyAdded) createShortcutIcon();


    } // end onStart


    // Creates shortcut on Android widget screen
    private void createShortcutIcon(){

        Intent shortcutIntent = new Intent(getApplicationContext(), Splash.class);
        shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        Intent addIntent = new Intent();
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));

        addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(getApplicationContext(),R.drawable.ic_launcher));

        addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
        getApplicationContext().sendBroadcast(addIntent);

        // Remembering that Shortcut was already added
        SharedPreferences.Editor editor = sharedPreferences.edit();
        editor.putBoolean(PREF_KEY_SHORTCUT_ADDED, true);
        editor.commit();

        objPublicDelegate.showToast(getString(R.string.app_name)+ " shortcut created on screen.");

    } // end createShortcutIcon

答案 3 :(得分:-2)

Android上没有此类API。