【Android】实现类似于QQ将好友的头像用作快捷方式。
原因:
/** * Activity Action: Creates a shortcut. * <p>Input: Nothing.</p> * <p>Output: An Intent representing the shortcut. The intent must contain three * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String), * and SHORTCUT_ICON (value: Bitmap) or SHORTCUT_ICON_RESOURCE * (value: ShortcutIconResource).</p> * * @see #EXTRA_SHORTCUT_INTENT * @see #EXTRA_SHORTCUT_NAME * @see #EXTRA_SHORTCUT_ICON * @see #EXTRA_SHORTCUT_ICON_RESOURCE * @see android.content.Intent.ShortcutIconResource */
不难看出有两种方式创建快捷方式图标,不过大都用的第一种。所以我们就试试第二种吧。
解决方案:
public void CreateShotCast(Context context, Class<?> clazz) { Intent shortcut = new Intent(Intent.ACTION_CREATE_SHORTCUT); Intent shortcutIntent = new Intent(Intent.ACTION_MAIN); shortcutIntent.setClass(context, clazz); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, "测试"); // Intent.EXTRA_SHORTCUT_ICON 是bitmap对象 shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON, BitmapFactory.decodeFile("路径")); context.sendBroadcast(shortcut); }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。