apkA 调用了 apkB 然后要在apkA中再kill掉apkB
ComponentName cn=new ComponentName("com.example.text2", "com.example.text2.MainActivity");
Intent intent=new Intent();
intent.setComponent(cn);
startActivity(intent);
ActivityManager manager = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
manager.killBackgroundProcesses("com.example.text2");
这样写apkB好像没有被kill掉啊 一点反应都没
郎朗坤
元芳怎么了
相关分类