“创建的快捷方式应用名称”仅显示1次

时间:2014-02-20 20:49:24

标签: android

当我点击应用程序更多时间它总是显示“创建快捷方式应用程序名称”时,它可能只显示一次?

Intent shortcutIntent = new Intent (this, GetQuoteActivity.class);      
Intent addIntent = new Intent(); 
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Get Quote"); 
addIntent.putExtra("duplicate", false); 
addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_launcher)); 
addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
sendBroadcast(addIntent);

}

0 个答案:

没有答案