Android打开其它应用程序(人人,微信,微博等等)

最近单位要求APP关注微信公众号功能,但是目前测试只能下载微信,不能实现关注功能,只能退而求次,让客户跳转微信手动关注。

以下为代码:

Intent intentweixn = new Intent();

			ComponentName cmp = new ComponentName("com.tencent.mm","com.tencent.mm.ui.LauncherUI");
			intentweixn.setAction(Intent.ACTION_MAIN);
			intentweixn.addCategory(Intent.CATEGORY_LAUNCHER);
			intentweixn.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
			intentweixn.setComponent(cmp);
			startActivityForResult(intentweixn, 0);


下面为几个常用其它APP的包名:

另:几个常用的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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值