博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android创建快捷方式图标
阅读量:5843 次
发布时间:2019-06-18

本文共 605 字,大约阅读时间需要 2 分钟。

一个方法,在APP需要的时候调用该方法即可:

public void createShortcutIconInHomeScreen() {		Intent addIntent = new Intent();		addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent());		addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "快捷方式名字");		// 不重复创建快捷方式图标。		addIntent.putExtra("duplicate", false);		// R.drawable.app_logo 快捷方式的图标icon。		addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,				Intent.ShortcutIconResource.fromContext(						getApplicationContext(), R.drawable.app_logo));		addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");		getApplicationContext().sendBroadcast(addIntent);	}

添加权限:

转载地址:http://emqcx.baihongyu.com/

你可能感兴趣的文章
关闭VMwareWorkStation的嘀嘀声音(启动或重启Linux虚拟机时)
查看>>
物联网时代更要注意信息安全
查看>>
论trycatch的重要性
查看>>
windows下利用cwRsync批量更新
查看>>
摆平Win2008与VPC2007的诡异冲突
查看>>
SAMBA最简单的配置方法
查看>>
SCOM数据库整理索引计划出错
查看>>
Android添加顶部通知(Notification)并处于“正在进行中”(onGoing)
查看>>
傻瓜式Linux之二:网络配置
查看>>
【iOS-cocos2d游戏引擎开发之一】搭建cocos2d游戏引擎环境,创建第一个HelloWorld!...
查看>>
企业架构 - 组织角色和技能
查看>>
线上数据清洗-一个有趣的算法
查看>>
Spring 基础
查看>>
Windows Server 2012 Server Core中安装活动目录
查看>>
网卡地址查看与修改
查看>>
容易被忽略CSS特性
查看>>
Linux内核中进程上下文、中断上下文、原子上下文、用户上下文的理解【转】...
查看>>
在RELEASE版本中快速定位DATA ABORT的方法
查看>>
Constraint4:default约束
查看>>
[SDK2.2]Windows Azure Virtual Network (2) 创建简单的Virtual Network
查看>>