如何为AndroidApp添加快捷方式-创新互联
文章目录
网页题目:如何为AndroidApp添加快捷方式-创新互联
文章源于:http://azwzsj.com/article/dhpchd.html
- 概述
- 效果
- 好处
- 添加方式
- 静态添加
- 动态添加
- 可以方便用户直接在桌面跳到目标页面
- 可以让你的App显得更加专业(不过切忌添加过多,1-3个就够了)
- 在资源文件中添加 xml 目录,并在里面创建 shortcuts.xml 文件
- AndroidManifest.xml 文件中
动态添加- 构造ShortcutInfo
val shortcutList = mutableListOf()
val shortcut1 = ShortcutInfo.Builder(this, "Dynamic1").apply {
setShortLabel("动态快捷1")
setLongLabel("D1")
setIcon(Icon.createWithResource(this@MainActivity, R.mipmap.icon3))
setIntent(Intent().apply {
action = Intent.ACTION_MAIN
setClass(this@MainActivity, DynamicTestActivity::class.java)
putExtra("info", "Dynamic shortcuts target class with intent1")
})
}.build()
shortcutList.add(shortcutList);
- 添加到系统中
shortcutManager.dynamicShortcuts = shortcutList
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧
网页题目:如何为AndroidApp添加快捷方式-创新互联
文章源于:http://azwzsj.com/article/dhpchd.html