码迷,mamicode.com
首页 > 其他好文 > 详细

打开其他应用程序和分享

时间:2014-08-06 10:24:01      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   art   ar   cti   

一、打开其它应用程序[以打开QQ为例]

1 Intent intent = new Intent();
2         ComponentName cmp = new ComponentName("com.tencent.mobileqq","com.tencent.mobileqq.activity.SplashActivity");
3         intent.setAction(Intent.ACTION_MAIN);
4         intent.addCategory(Intent.CATEGORY_LAUNCHER);
5         intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
6         intent.setComponent(cmp);
7         startActivity(intent);

 

二、分享

1 Intent intent=new Intent(Intent.ACTION_SEND);   
2 
3         intent.setType("text/plain");   
4 
5         intent.putExtra(Intent.EXTRA_SUBJECT,"分享");   
6         intent.putExtra(Intent.EXTRA_TEXT, "hello,weibo!");    
7         intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   
8         startActivity(Intent.createChooser(intent, "share"));

 

打开其他应用程序和分享,布布扣,bubuko.com

打开其他应用程序和分享

标签:style   blog   color   os   io   art   ar   cti   

原文地址:http://www.cnblogs.com/mengxq/p/3893860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!