当前位置:   article > 正文

android--手机桌面添加网址链接图标(解决方式二)

android--手机桌面添加网址链接图标

前一篇文章主要是通过打开app来实现打开网址的功能。尽管实现起来比較简单,但从效果上来说还是有缺陷。

本文将借助于Broadcast广播机制来实现桌面图标链接网址的功能。不仅效果好,并且最大的长处就是不用再借助于app应用来打开站点了。

实现过程例如以下:

1、在AndroidManifest.xml配置文件里加入权限:

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

2、在MainActivity中的OnCreate方法中设置和加入广播监听Intent:

  1. final Intent shortCutIntent = new Intent(
  2. "com.android.launcher.action.INSTALL_SHORTCUT");
  3. final Parcelable icon = ((BitmapDrawable)context.getResources().getDrawable(R.drawable.ic_launcher)).getBitmap(); // 获取快捷键的图标
  4. Uri uri = Uri.parse("http://blog.csdn.net/wanggsx918");
  5. Intent pendingIntent = new Intent(Intent.ACTION_VIEW, uri);
  6. //桌面快捷方式图标
  7. shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON, icon);
  8. //桌面快捷方式标题
  9. shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
  10. context.getString(R.string.app_name));
  11. //桌面快捷方式动作:点击图标时的动作
  12. shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, pendingIntent);
  13. context.sendBroadcast(shortCutIntent);

没错,此种实现方式既正宗,又完美。要的就是这个口味。

转载于:https://www.cnblogs.com/ljbguanli/p/6932621.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/472202
推荐阅读
相关标签
  

闽ICP备14008679号