下载图片或视频同步到手机相册

news/2024/11/17 4:24:06/

记录
之前用的是下面的代码

Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(myCaptureFile ));
sendBroadcast(intent);//发送一个广播

发现在某些手机上不好使,然后通过查找资料替换为下面的代码

MediaScannerConnection.scanFile(context, new String[]{file.getAbsolutePath()}, null, null);

先记录下


http://www.ppmy.cn/news/861224.html

相关文章

Android 下载到APP私有目录的图片和视频同步到手机图库相册

//下载到本地私有目录的代码省略 if (file.getAbsolutePath().contains("MP4")) {copyFileToGallery(file, file.getName());} else {MediaStore.Images.Media.insertImage(getActivity().getContentResolver(), BitmapFactory.decodeFile(file.getAbsolutePath()), …

Android 图片下载工具类

public class DownGoodsImage {private Context context;private String filePath;private String fileName;private Bitmap mBitmap;private String mSaveMessage "失败";private final String TAG "DOWNLOADIMG";private ProgressDialog mSaveDialog …

关于下载图片

1. 后端返回的图片链接如下(单张或者多张): // 单张图片 images: "/api-sysfile/sys/file/download?filePath2852_一.1.png" // 多张图片 images: "/api-sysfile/sys/file/download?filePath2852_一.1.png,/api- sysfile/sys/file/download?filePath2852_二…

安卓 Android 下载网络图片保存到本地

通过网络地址获取网络图片&#xff0c;点击下载将图片显示出来&#xff0c;然后点击图片将图片保存到本地。 首先需要在manifest上添加一些权限&#xff1a; <!-- 访问网络的权限 --> <uses-permission android:name"android.permission.INTERNET"> &l…

uniapp下载图片

咱们要做的主要是点击某个地方下载图片&#xff0c;点击按钮&#xff0c;会把图片下载到手机本地 下面是JS的实现代码 首先绑定事件 然后下面就是 //下面方法请写在你定义的方法中 uni.showLoading({title: 下载中...,mask: true})//提示 uni.downloadFile({ url: url, // 这里…

图片下载

// 图片下载函数public static String makeImg(String imgUrl, String fileURL) {String imgFile"";try {// 创建流BufferedInputStream in new BufferedInputStream(new URL(imgUrl).openStream());// 生成图片名int index imgUrl.lastIndexOf("/");Str…

Taro 下载图片到手机

最近需要做一个微信下载图片到手机的需求&#xff0c;因为涉及到微信的照片权限&#xff0c;因此做个记录 // 鉴权操作 判断是否有保存到相册的权限 // 有就直接下载 没有就弹窗提示给权限 downImg() {Taro.getSetting({success: res > {if(!res.authSetting[scope.writePh…

Android下载网络图片资源

从网络下载图片资源在各种APP中很常见&#xff0c;比如很多APP都有广告轮番功能&#xff0c;这些广告图片通常是从服务器获取的&#xff0c;这里就需要从服务器上下载图片资源并显示。 一、获取网络图片并下载到本地&#xff1a; 代码&#xff1a;MainActivity.java&#xff…