读书人

android圆桌面快捷方式的创建和查询

发布时间: 2012-07-01 13:15:00 作者: rapoo

android桌面快捷方式的创建和查询
桌面快捷方式的创建

Intent intent = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT");intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));ComponentName comp = new ComponentName(getApplicationContext(), Shortcut.class);intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,new Intent(Intent.ACTION_MAIN).setComponent(comp));sendBroadcast(intent);

1 楼 1846396994 2012-04-21 总结的关于添加和删除及判断是否存在快捷方式,Android应用添加(创建)和删除及判断是否存在桌面快捷方式

读书人网 >Android

热点推荐