博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android桌面快捷方式跳转到指定activity
阅读量:5041 次
发布时间:2019-06-12

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

AndroidManifest.xml 应用主入口配置:

创建快捷方式:

// 自己定义action    Intent intent = new Intent("*.intent.action.SHORTCUT");    Bundle bundle = new Bundle();    // 能够依据传递參数运行对应操作    bundle.putString("needgoto", "*activity");    intent.putExtras(bundle);    // 创建桌面快捷方式    Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");    // 是否同意反复创建    shortcutintent.putExtra("duplicate", true);    // 须要显示的名称    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name_1));    // 快捷图片    Parcelable icon = Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.drawable.ic_launcher);    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);    // 点击快捷图片,运行的程序主入口    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);    // 发送广播运行操作    sendBroadcast(shortcutintent);

转载于:https://www.cnblogs.com/yxwkf/p/5425742.html

你可能感兴趣的文章
一个样例看清楚JQuery子元素选择器children()和find()的差别
查看>>
代码实现导航栏分割线
查看>>
Windows Phone开发(7):当好总舵主 转:http://blog.csdn.net/tcjiaan/article/details/7281421...
查看>>
ASP.Net页面和控件缓存设置
查看>>
SEO第一步做什么
查看>>
Python-01作业(登录和三级菜单)
查看>>
spring-qualifier解释
查看>>
URL参数中文乱码解决
查看>>
VS 2010打开设计器出现错误
查看>>
SQLServer 镜像功能完全实现
查看>>
Vue-详解设置路由导航的两种方法
查看>>
一个mysql主从复制的配置案例
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
dvwa网络渗透测试环境的搭建
查看>>
Win8 安装VS2012 和 Sql Server失败问题
查看>>
过点(2,4)作一直线在第一象限与两轴围成三角形,问三角形面积的最小值?...
查看>>
java aes CBC的填充方式发现
查看>>
使用ionic cordova build android --release --prod命令打包报有如下错误及解决方法
查看>>
BZOJ 2338 HNOI2011 数矩形 计算几何
查看>>
关于页面<!DOCTYPE>声明
查看>>