android 内部打开微信

来源:互联网 发布:古建筑三维模型软件 编辑:程序博客网 时间:2024/04/30 15:01
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.weibocom.sina.weibo.EditActivity腾讯微博(编辑界面):com.tencent.WBlogcom.tencent.WBlog.activity.MicroblogInput微信:com.tencent.mmcom.tencent.mm.ui.LauncherUIQQ:com.tencent.mobileqqcom.tencent.mobileqq.activity.HomeActivity


原创粉丝点击