国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android APP中跳轉至微信,分享圖文給好友或者朋友圈(加跳轉QQ好友或QQ群)

2019-11-09 17:59:25
字體:
來源:轉載
供稿:網友
// ComponentName(組件名稱)是用來打開其他應用程序中的Activity或服務的Intent intent = new Intent();ComponentName cmp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.LauncherUI");// 包名該有activityintent.setAction(Intent.ACTION_MAIN);intent.addCategory(Intent.CATEGORY_LAUNCHER);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setComponent(cmp);startActivityForResult(intent, 0);//分享圖文給好友或者朋友圈---參考http://www.eoeandroid.com/thread-288401-1-1.html?_dsign=23fd2fc1 支持分享多張圖片+文字到朋友圈關于同時分享圖片+文字的原理可以參考知乎上回答:http://www.zhihu.com/question/21288247/**     * 分享圖片給好友     *     * @param file     */PRivate void shareToFriend(File file) {    Intent intent = new Intent();    ComponentName comp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareImgUI");    intent.setComponent(comp);    intent.setAction(Intent.ACTION_SEND);    intent.setType("image/*");    intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));    startActivity(intent);}/**     * 分享多圖到朋友圈,多張圖片加文字     *     * @param uris     */private void shareToTimeLine(String title, ArrayList<Uri> uris) {    Intent intent = new Intent();    ComponentName comp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI");    intent.setComponent(comp);    intent.setAction(Intent.ACTION_SEND_MULTipLE);    intent.setType("image/*");    intent.putExtra("Kdescription", title);    intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);    startActivity(intent);}

//跳轉指定QQ好友或者QQ群聊天界面

//String url="mqqwpa://im/chat?chat_type=wpa&uin=5****1965";//跳轉至QQ好友String url = "mqqwpa://im/chat?chat_type=group&uin=463028**3&version=1";//跳轉至QQ群startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 延吉市| 柳林县| 襄城县| 竹溪县| 梓潼县| 乐山市| 长寿区| 旌德县| 顺平县| 毕节市| 铜鼓县| 会泽县| 定兴县| 鄂托克前旗| 涪陵区| 军事| 炎陵县| 怀远县| 淮南市| 宜君县| 襄樊市| 土默特右旗| 邹城市| 清河县| 获嘉县| 达拉特旗| 屏东县| 寿光市| 丹江口市| 承德县| 嵊州市| 崇义县| 苍溪县| 许昌市| 莱阳市| 五原县| 弋阳县| 香港 | 桓仁| 青浦区| 淮阳县|