1. 程式人生 > >android 內部開啟微信

android 內部開啟微信

Intent intent = new Intent();
ComponentName cmp=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(cmp);
startActivity(intent);

幾個常用的package有:
新浪微博(編輯介面):
com.sina.weibo
com.sina.weibo.EditActivity
騰訊微博(編輯介面):
com.tencent.WBlog
com.tencent.WBlog.activity.MicroblogInput
微信:
com.tencent.mm
com.tencent.mm.ui.LauncherUI
QQ:
com.tencent.mobileqq
com.tencent.mobileqq.activity.HomeActivity