免第三方sdk的快速分享各平台的方案

在Google Play上下了一个app做硬件检测,
然后使用它的分享,发现它可以分享到几乎涵盖我手机上所有的平台上,之前做第三方分享的时候,都是用类似 x盟这样的sdk
这个只在google市场才有的app,按道理不会也是这样弄吧?难道是集成了国外的sdk?


image.png

反编译看下。
唔....
是我孤陋寡闻了

Intent intent = new Intent("android.intent.action.SEND");

 intent.setType("text/plain");

 intent.putExtra("android.intent.extra.SUBJECT", "Spread word");

 intent.putExtra("android.intent.extra.TEXT", "Download From Playstore :-) \n[https://goo.gl/YFnyUD](https://goo.gl/YFnyUD)");

 startActivity(Intent.createChooser(intent, "Share via"));

当然了,如果对分享的数据监控没有特别要求,只是想简单分享给朋友的话,这个intent的方式做分享确实不错。

你可能感兴趣的:(免第三方sdk的快速分享各平台的方案)