当前位置:网站首页>A應用喚醒B應該快速方法

A應用喚醒B應該快速方法

2022-07-05 04:04: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://yzsam.com/2022/186/202207050402006186.html