Android 启动其余app,如微博/微信等

在须要跳转地方添加如下代码:java

private void gotoApp(){
    Intent intent = new Intent();
    ComponentName cmp = new ComponentName("com.sina.weibo", "com.sina.weibo.EditActivity");
    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
相关文章
相关标签/搜索