跳转很简单..
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.tencent.mm", "com.tencent.mm.ui.LauncherUI"));
intent.setAction(Intent.ACTION_VIEW);
startActivity(intent);
但是跳转过去跳不回来了。
测试了一下微信发现启动界面是LauncherUi,Tab页也是这个LauncherUi,目测是获取Activity的视图没有进行跳转只显示了视图。
但是这个问题怎么破....