搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
小蓝xlanll
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
用Django实现微信小程序中的ChatGPT的流式传输_nuxt+django+chatgpt
2
微信小程序-全局配置_微信小程序tabbar字体颜色
3
一文速学-XGBoost模型算法原理以及实现+Python项目实战_xgboost金融领域模型实战
4
c++ 哈希表find_Leecode刷题---哈希表与字符串
5
2张图2秒钟3D重建!这款AI工具火爆GitHub,网友:忘掉Sora
6
Stable Diffusion动态加载Lora过程中的实验、原理与说明_动态lora文件
7
分布式搜索引擎Elasticsearch中各种类型节点的作用
8
【重点!!!】【归并排序】315. 计算右侧小于当前元素的个数
9
【ICCV】AIGC时代下的SOTA人脸表征提取器TransFace,FaceChain团队出品
10
经典/最新计算机视觉论文及代码推荐_voxel field fusion for 3d object detection
当前位置:
article
> 正文
Android:QQ分享、微信分享、朋友圈分享(不使用第三方SDK)_android qq分享给好友
作者:小蓝xlanll | 2024-03-23 03:31:32
赞
踩
android qq分享给好友
转自:http://blog.csdn.net/HMYANG314/article/details/41939845
一、分享到QQ
[java]
view plain
copy
/**
* 分享到QQ好友
*
*/
private
void
shareToQQFriend() {
Intent intent =
new
Intent();
ComponentName componentName =
new
ComponentName(
"com.tencent.mobileqq"
,
"com.tencent.mobileqq.activity.JumpActivity"
);
intent.setComponent(componentName);
intent.setAction(Intent.ACTION_SEND);
intent.setType(
"text/*"
);
intent.putExtra(Intent.EXTRA_TEXT,
"这是分享内容"
);
startActivity(intent);
}
二、分享到微信朋友
[java]
view plain
copy
/**
* 分享信息到朋友
*
*/
private
void
shareToWxFriend() {
Intent intent =
new
Intent();
ComponentName componentName =
new
ComponentName(
"com.tencent.mm"
,
"com.tencent.mm.ui.tools.ShareImgUI"
);
intent.setComponent(componentName);
intent.setAction(Intent.ACTION_SEND);
intent.setType(
"text/*"
);
intent.putExtra(Intent.EXTRA_TEXT,
"这是分享内容"
);
intent.putExtra(Intent.EXTRA_STREAM,
"http://www.weixin.com"
);
startActivity(intent);
}
三、分享到朋友圈
[java]
view plain
copy
/**
* 分享信息到朋友圈
*
* @param file
* ,假如图片的路径为path,那么file = new File(path);
*/
private
void
shareToTimeLine(File file) {
Intent intent =
new
Intent();
ComponentName componentName =
new
ComponentName(
"com.tencent.mm"
,
"com.tencent.mm.ui.tools.ShareToTimeLineUI"
);
intent.setComponent(componentName);
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
// intent.setAction(android.content.Intent.ACTION_SEND_MULTIPLE);
// ArrayList<Uri> uris = new ArrayList<Uri>();
// for (int i = 0; i < images.size(); i++) {
// Uri data = Uri.fromFile(new File(thumbPaths.get(i)));
// uris.add(data);
// }
// intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
intent.setType(
"image/*"
);
startActivity(intent);
}
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/小蓝xlanll/article/detail/292882?site
推荐阅读
article
android
studio
安装
教程_
android
studio
zip
版如何使用...
百度搜索Android
studio
,或者直接输入http://www.
android
-
studio
.org进入这个页面...
赞
踩
article
Android
Studio
4.0
下载安装
踩坑记录及
解决
方法...
小结:虽然在搭建环境中遇到一些问题,但是
解决
问题的过程也是学习并收获的过程。遇到问题最多的时期,往往也是成长最快的时期。...
赞
踩
article
Android
& iOS -
Android
Studio
/
Xcode
历史
版本下载(持续更新)_a...
最近升级开发工具老是遇到各种兼容性问题导致需要降回老版本,
Xcode
历史
版本下载方便倒还好,
Android
Studio
...
赞
踩
article
Android
高级
面试
-5:
四大
组件
、
系统
源码等...
1、
四大
组件
1.1 ActivityQ:在两个 Activity 之间传递对象还需要注意什么呢?对象的大小。Intent...
赞
踩
article
Android
系统
架构图
_
系统
开发环境
架构图
android
软件...
Android
操作
系统
架构开篇: http://gityuan.com/
android
/ https://cloud....
赞
踩
article
Android
Q 10
framework
_
android
10
framework
opt...
Android
Q 10
framework
修改记录_
android
10
framework
opt
android
1...
赞
踩
article
Android
系统
的分区和文件
系统
(5)-
Android
Framework
层上的工具和命令_a...
比如 IStatusBarService.java中的有关摘录,此文件在:out/target/common/obj/J...
赞
踩
article
Android
Framework
目录
解析_
frameworks
opt...
4、telphony
目录
文件 描述 CellIdentityCdma //描述电信通信标识 CellIden...
赞
踩
article
Android
10.0单编替换
framework
.jar方法_
build
/
make
/
core
/ta...
Android
Q单编替换
framework
.jar方法
Android
Q中按照以往方法修改
framework
/base...
赞
踩
article
Android
10编译报错整理_
ninja
failed
with
:
exit
status
13...
编译
Android
10遇到以下不同报错,没有给出明显的错误信息,最后验证出是电脑内存不足导致编译被杀掉,增大电脑内存和...
赞
踩
article
Android
framework
源码
结构图_
android
framework
.
jar
对应
的
源...
转!转!转!https://blog.csdn.net/iqingfen/article/details/4470303...
赞
踩
article
Android
10
根
文件系统
和
编译系统
(四):
Android
源码
目录结构_
android
10
a...
配套系列教学视频链接:
Android
10
.0 根
文件系统
和
编译系统
:https://edu.csdn.net/cour...
赞
踩
article
Android
Framework
添加
自定义
服务和
接口
_
framework
加
接口
...
文章目录1、概述2、扩展
Framework
接口
2.1、定义Java
接口
2.2、定义aidl
接口
2.3、编译
接口
2.4、输...
赞
踩
article
android
11向
framwork
添加
服务
编译
成
jar
_
android
新增模块
编译
进framew...
之前写过一篇8.1
添加
自定义系统
服务
的文章,这篇文章有点区别,就是把manager部分单独新建了一个模块,方便
编译
成ja...
赞
踩
article
Android
framework
层
添加
三方应用接口,及
添加
系统
Service
(转)_android...
原亲测可用
Android
原生代码
添加
系统
服务2017年01月12日 21:55:56阅读数:5492在
Android
系统
...
赞
踩
article
Android
P中如何
自定义
一个系统
Service
_
自定义
service
...
1. Context中新建
service
nameframeworks/base/core/java/android/c...
赞
踩
article
Android
自定义
Service
的几种
实现
方法...
1、 手机ROM定制商: 添加service到System
Service
Service
端
实现
: class CTestS...
赞
踩
article
Android
S抓取各类
profile
的方法_
product
_
system
_
server
_comp...
Android
S抓取各类
profile
的方法1. 准备环境2. 开始抓取3. 转换一下
profile
1. 准备环境这里...
赞
踩
article
android
9.0
10.0 添加
自定义
系统
服务
接口给
app
调用_
android
9.0
servi...
在10.0的产品开发中,产品开发定制需求,需要
自定义
系统
服务
来提供接口来给
app
调用
系统
的接口,实现功能的实现,根据需求...
赞
踩
article
android
9.0
系统
Services
(自定义
服务
)
添加
jni
方法
_
服务
端导入
jni
...
在9.0的
系统
产品rom进行定制化开发中,在一些产品开发中,由于需要和底层驱动进行通讯的时候,需要在
系统
中用
jni
进行数...
赞
踩
相关标签
android studio
android
ide
xcode
面试
java
测试
1024程序员节
frameworks
cmd
Android Framework目录解析
编译器
c++
c语言
jar
Android
Services
源码
AIDL