亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述android--手机桌面添加网址链接图标(解决方式二)相关的知识,希望能为你提供帮助。
前一篇文章主要是通过打开app来实现打开网址的功能。尽管实现起来比較简单,但从效果上来说还是有缺陷。
本文将借助于Broadcast广播机制来实现桌面图标链接网址的功能。不仅效果好,并且最大的长处就是不用再借助于app应用来打开站点了。
实现过程例如以下:
1、在androidManifest.xml配置文件里加入权限:
< uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" /> < uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
2、在MainActivity中的OnCreate方法中设置和加入广播监听Intent:
final Intent shortCutIntent = new Intent( "com.android.launcher.action.INSTALL_SHORTCUT"); final Parcelable icon = ((BitmapDrawable)context.getResources().getDrawable(R.drawable.ic_launcher)).getBitmap(); // 获取快捷键的图标 Uri uri = Uri.parse("http://blog.csdn.net/wanggsx918"); Intent pendingIntent = new Intent(Intent.ACTION_VIEW, uri); //桌面快捷方式图标 shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON, icon); //桌面快捷方式标题 shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, context.getString(R.string.app_name)); //桌面快捷方式动作:点击图标时的动作 shortCutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, pendingIntent); context.sendBroadcast(shortCutIntent);
没错,此种实现方式既正宗,又完美。要的就是这个口味。【android--手机桌面添加网址链接图标(解决方式二)】
推荐阅读
- Android实战简易教程-第二十九枪(基于Face++实现年龄识别APP)
- android的工厂模式
- [android]DES/3DES/AES加密方式
- Android Studio提示: Application Installation Failed
- (博弈sg) Codeforces Round #417 (Div. 2) E Sagheer and Apple Tree
- Android 6.0以上 需要运行时申请的权限
- 干货(app用户插画设计)
- PS5最佳游戏路由器有哪些(合集综合评测)
- Xbox Series X值得购买吗(购买它的5个理由)