cszchong
- 发布:2015-08-10 16:21
- 更新:2015-08-18 10:03
- 阅读:1597
1 个回复
tominsanity
/启动微信/
var mainActivity = plus.android.runtimeMainActivity();
var Intent = plus.android.importClass('android.content.Intent');
var ComponentName = plus.android.importClass('android.content.ComponentName');
var intent = new Intent();
var _cn = new ComponentName("com.tencent.mm","com.tencent.mm.ui.LauncherUI");
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setComponent(componentName);
mainActivity.startActivity(intent);