您的位置:首页 > 移动开发 > Android开发

Android删除桌面上的快捷方式

2011-05-24 15:08 405 查看
private void uninstallShortcut() {

String ACTION_UNINSTALL_SHORTCUT = "com.android.launcher.action.UNINSTALL_SHORTCUT";

Intent actionMainIntent = new Intent(Intent.ACTION_MAIN);
actionMainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
actionMainIntent.setComponent(new ComponentName(this.getPackageName(), "com.alipay.deposit.PhoneInputActivity"));

Intent intent = new Intent(ACTION_UNINSTALL_SHORTCUT);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, actionMainIntent);
sendBroadcast(intent);

}
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android action string