我想知道在安装后是否可以选择在用户桌面上设置我的应用程序的自动图标链接?
我知道这样做的唯一方法是用户可以从应用程序列表中手动将其拖动到桌面.有没有办法自动为用户做这件事(没有他的触摸)?
谢谢,
moshic.
最佳答案请不要自动执行!让用户选择是否需要你的快捷方式!
这是您需要的代码:
//Create shortcutIntent here with the intent that will launch you app. Intent shortcutIntent = (...) shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_top); final Intent intent = new Intent(); intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,shortcutIntent); // Sets the custom shortcut's Title intent.putExtra(Intent.EXTRA_SHORTCUT_name,sname); intent.putExtra(Intent.EXTRA_SHORTCUT_ICON,icon); // add the shortcut intent.setAction("com.androID.launcher.action.INSTALL_SHORTCUT"); sendbroadcast(intent);
不要忘记清单中的额外许可!
总结 以上是内存溢出为你收集整理的android – 桌面图标链接全部内容,希望文章能够帮你解决android – 桌面图标链接所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)