Android程序创建桌面快捷方式

创建和删除桌面快捷方式的代码网上很多,整合一下留着自己用。


主要是实现了程序第一次打开的时候创建快捷方式,程序卸载的时候自动删除快捷方式。


Activity代码:

	if (!hasShortCut()) {
			createShortCut();
		}

/**
	 * 添加桌面快捷方式
	 * 
	 */
	private void createShortCut() {

		Intent intent = new Intent();
		intent.setClass(this, OpenActivity.class);
		intent.setAction("android.intent.action.MAIN");			// 1
		intent.addCategory("android.intent.category.LAUNCHER");	// 2 包含这两行,程序卸载时自动删除快捷方式
		Intent addShortcut = new Intent(
				"com.android.launcher.action.INSTALL_SHORTCUT");
		Parcelable icon = Intent.ShortcutIconResource.fromContext(this,
				R.drawable.app_icon);
		addShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,
				getString(R.string.app_name));
		addShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
		addShortcut.putExtra("duplicate", 0);
		addShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
		sendBroadcast(addShortcut);
	}

	/**
	 * 判断快捷方式是否存在
	 * 
	 */
	private boolean hasShortCut() {
		boolean isInstallShortcut = false;
		final ContentResolver cr = getContentResolver();
		final Uri CONTENT_URI = Uri
				.parse("content://com.android.launcher2.settings/favorites?notify=true");
		Cursor c = cr.query(CONTENT_URI,
				new String[] { "title", "iconResource" }, "title=?", 
				new String[] { getString(R.string.app_name).trim() }, null);
		if (c != null && c.getCount() > 0) {
			isInstallShortcut = true;
		}
		return isInstallShortcut;
	}



Manifest.xml

    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
    <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
    <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值