获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 上线小程序能不能使用电子软著?
上线小程序能不能使用电子软著?
2023-03-04 - 通过FileProvider分享文件在安卓11提示获取资源失败
请问如何解决呢 下面是我的代码 Intent share = new Intent(Intent.ACTION_SEND); share.putExtra(Intent.EXTRA_STREAM, uri); share.setType("application/pdf");//此处可发送多种文件 share.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); share.addCategory(Intent.CATEGORY_DEFAULT); share.setPackage("com.tencent.mm"); if (share.resolveActivity(getCurrentContext().getPackageManager()) != null){ startActivity(share); }else { ToastUtil.showToast(getCurrentContext(),"微信未安装"); }
2021-11-15