摘要: /** * 判断桌面是否已添加快捷方式 * * @param cx * @param titleName * 快捷方式名称 * @return */ public static boolean hasShortcut(Context cx) { boolean result = false; // 获取当前应用名称 String title = null; try { final PackageManager pm = cx.getPackageManager(); title = pm.getApplicationLabel( ... 阅读全文
posted @ 2012-07-23 15:44 3H 阅读(1095) 评论(0) 推荐(0) 编辑