Ярлык на главном экране для действия в моем приложении - PullRequest
1 голос
/ 02 октября 2010

В моем приложении у меня есть ListView, когда пользователь нажимает на элемент, выполняется какое-то действие. Теперь я хочу создать контекстное меню для элемента списка с возможностью добавить это действие на домашний экран в виде ярлыка. Может кто-нибудь предложить мне какую-нибудь ссылку или подсказку, как это сделать?

1 Ответ

1 голос
/ 06 февраля 2011
private void createShortcut(Command command){
    Intent shortcutIntent = new Intent(this, FormActivity.class);
    // As binary because OS does not know type Command
    command.putToIntentAsXml(shortcutIntent);
    shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

    Intent intent = new Intent();
    intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, command.getTitle());
    Parcelable iconResource = Intent
        .ShortcutIconResource
        .fromContext(this,  R.drawable.ic_launcher);
    intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
    intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");

    sendBroadcast(intent);
}
...