手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >Android中创建快捷方式及删除快捷方式实现方法
Android中创建快捷方式及删除快捷方式实现方法
摘要:/****创建快捷方式*@parammap快捷方式图标*@paramappName快捷方式标题*@paramappUrl快捷方式打开的地址*...

/** * * 创建快捷方式 * @param map 快捷方式图标 * @param appName 快捷方式标题 * @param appUrl 快捷方式打开的地址 * @param iconUrl 快捷方式图标地址 * * */ public static void createShortcut(Context activity ,Bitmap map ,String appName ,String appUrl ,String iconUrl){ Intent shortcut = new Intent( "com.android.launcher.action.INSTALL_SHORTCUT"); shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,appName); shortcut.putExtra("duplicate", false);// 设置是否重复创建 Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW) ; // intent.addCategory(Intent.CATEGORY_LAUNCHER); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) ; intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK) ; intent.setClass(activity, WebViewActivity.class);// 设置第一个页面 intent.putExtra("keyword", appUrl); intent.putExtra("appName", appName) ; intent.putExtra("iconUrl", iconUrl) ; shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent); shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON, map); activity.sendBroadcast(shortcut); } /** * * 删除快捷方式 * @param shortcutName app名字 * @param className 绝对路径如:getPackageName() + ".WebViewActivity" * * */ public static void removeShortcut(Context cxt, String shortcutName, String className) { Intent shortcutIntent = new Intent(Intent.ACTION_VIEW); shortcutIntent.setClassName(cxt, className); Intent intent = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT"); intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, shortcutName); cxt.sendBroadcast(intent); }

【Android中创建快捷方式及删除快捷方式实现方法】相关文章:

Android从服务器端获取数据的几种方法

Android 创建/验证/删除桌面快捷方式(已测试可用)

Android开发之串口编程原理和实现方式

基于Android中手势交互的实现方法

Android中删除文件以及文件夹的命令记录

在Android中创建菜单项Menu以及获取手机分辨率的解决方法

Android界面刷新的方法分享

Android中隐藏标题栏和状态栏的方法

Android开发中遇到端口号占用问题解决方法

解析在Android中为TextView增加自定义HTML标签的实现方法

精品推荐
分类导航