Android创建桌面快捷方式

作者: Android技术分享 | 来源:发表于2018-02-12 16:30 被阅读338次

需求:点击按钮创建快捷方式

1.用户触发创创建事件时,在手机桌面创建指定页面的快捷方式。

2.当APP关闭时,点击桌面快捷方式打开APP,跳转至指定页面

3.当APP在后台是,点击桌面快捷方式,跳转至指定页面


分析:

Android中通过本地广播的方式将创建快捷方式的命令发送给手机,让手机在桌面执行快捷方式创建操作;Intent作为携带信息的载体。


效果图:

Shortcut1.gif

实现:

1. 配置权限

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

2. 代码实现

1、创建携带快捷方式信息的intent

Intent shortCutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");

2、设置不允许重复创建

shortCutIntent.putExtra("duplicate", false);

3、设置快捷方式的名字

shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "测试");

4、设置快捷方式的图标

shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(context, R.drawable.ic_launcher));

5、设置设置关联程序

Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
intent.setClass(context, MainActivity.class);
shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
// 发送广播
context.sendBroadcast(shortCutIntent);

附上Demo源码:https://pan.baidu.com/s/1gfTSPzl

相关文章

网友评论

    本文标题:Android创建桌面快捷方式

    本文链接:https://www.haomeiwen.com/subject/swnrtftx.html