当前位置:网站首页>A应用唤醒B应该快速方法

A应用唤醒B应该快速方法

2022-07-05 04:02:00 By-LQX

快速唤醒另外一个应用,需要知道另一个apk的包名

//A应用唤醒部分代码逻辑
Intent intent = new Intent(Intent.ACTION_MAIN);
/**知道要跳转应用的包命与目标Activity*/
ComponentName componentName = new ComponentName("com.smartdevice.aidl", "com.smartdevice.aidl.MainActivity");
intent.setComponent(componentName);
//intent.putExtra("", "");//这里Intent传值
startActivity(intent);
原网站

版权声明
本文为[By-LQX]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_51579904/article/details/125480818