分享一个本地office文件到QQ正常,分享到微信那边提示获取不到资源,网上找了很久,文件路径换了很多格式都不行,有没有大神解决过这问题, 感觉是微信7.0以上的问题
下面是代码
var Intent = plus.android.importClass('android.content.Intent');
var uri = plus.android.importClass('android.net.Uri')
var wechatIntent = new Intent(Intent.ACTION_SEND);
wechatIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION |
Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
wechatIntent.setType("/");
wechatIntent.putExtra(Intent.EXTRA_STREAM,uri.parse('/storage/emulated/0/Android/data/io.dcloud.HBuilder/downloads/test/1.docx'));
plus.android.runtimeMainActivity().startActivity(Intent.createChooser(wechatIntent,"分享到"));
8***@qq.com
- 发布:2019-11-19 12:05
- 更新:2019-11-19 12:05
- 阅读:1640
0 个回复