爱收集资源网

Android分享多文件,必须为图片格式

网络整理 2023-09-28 01:02

解决Android调用系统分享图片给陌陌,出现分享失败,分享多文件必须为图片格式

近日应公司需求,分享多图片到陌陌的功能,之前仍然是用陌陌自己家SDK实现分享,并且查看陌陌的原生SDK是不具备多图分享的。在网上查找解决办法,直接调用手机系统进行分享微信朋友圈图片不压缩,进行系统分享时分享给QQ,微博等都可以,但分享陌陌时才会出现分享失败,分享多文件必须为图片格式,看网上各路高手都各显神通都没解决具体问题,于是自己就总结出此篇文章为后来者少踩些坑,让你更快完成公司交给你的任务,让产品总监对你刮目相看,话不多说直接上干货。

 private void systemShareWeChat(int shareTag,String photoPath){
        Resources res=getResources();
        Bitmap bmp=BitmapFactory.decodeResource(res, R.drawable.share);
        File f = null;
        ComponentName comp1,comp;
        comp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareImgUI");//调用系统分享给微信朋友
        comp1 = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI");//调用系统分享给微信朋友圈
        try {
        //将Android中drawable图片保存到本地
            String dir= Environment.getExternalStorageDirectory().getAbsolutePath()+File.separator+"share"+".jpg";
             f = new File(dir);
            if (!f.exists()) {
                f.getParentFile().mkdirs();
                f.createNewFile();
            }
            FileOutputStream out = new FileOutputStream(f);
            bmp.compress(Bitmap.CompressFormat.PNG, 80, out);
            out.flush();
            out.close();
            Uri uri = FileProvider.getUriForFile(NativePhoto.this.getApplicationContext(),
                    "com.lipuwulian.blesample.provider", f);//这个是版本大于Android7.0(包含)临时访问文件,没有这个会报异常
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace(); }
        ArrayList imageUris = new ArrayList();
        imageUris.add(UrigetImageContentUri(NativePhoto.this,new File(photoPath)));//这个是分享本地存储的图片
        imageUris.add(UrigetImageContentUri(NativePhoto.this,f));
        Intent shareIntent = new Intent();
        shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
        if(shareTag==0){
            shareIntent.setComponent(comp1);//分享给微信朋友圈
        }else if(shareTag==1){
            shareIntent.setComponent(comp);//分享给微信朋友
        }
        //如果去掉shareIntent.setComponent("*");系统会调出所有的分享软件
        shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
        shareIntent.setType("image/*");
        startActivity(shareIntent);
    }

//假如是陌陌分享的话一定一定将这个直接复制到自己项目中,将自己图片路径换为content:不然还会出现上述错误

public static Uri UrigetImageContentUri(Context context, File imageFile) {
        String filePath = imageFile.getAbsolutePath();
        Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
        new String[]{MediaStore.Images.Media._ID}, MediaStore.Images.Media.DATA +"=? ", new String[]{filePath}, null);
        Uri uri =null;
        if (cursor !=null) {
            if (cursor.moveToFirst()) {
                int id = cursor.getInt(cursor.getColumnIndex(MediaStore.MediaColumns._ID));
                Uri baseUri = Uri.parse("content://media/external/images/media");
                uri = Uri.withAppendedPath(baseUri, "" + id);
        }
            cursor.close();
        }
        if (uri ==null) {
            ContentValues values =new ContentValues();
            values.put(MediaStore.Images.Media.DATA, filePath);
            uri = context.getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
        }
        return uri;
    }

微信朋友圈图片不压缩_压缩圈微信图片朋友圈怎么看_压缩圈微信图片朋友能看到吗

这样就解决了调用系统分享报出分享失败,分享多文件必须为图片格式的错误了。

在AndroidManifest中临时文件注册解决Android7.0版本及其以后文件uri报错问题


        
        
            
        
        
            
                
                
            
        
     
    

在res文件夹下创建xml文件夹、

file_paths文件里的内容:path是data/包名加.testapplication/



    
        
        
    

假如想学习怎样实现陌陌分享的话,可以去我的下一篇一分钟让你实现Android陌陌分享功能

到这儿就结束了,希望就能帮到你们哦!IT须要爱与和平,最后请你们关注我,以及我的一分钟系列(Android篇和小程序篇)让你一分钟实现相应的功能微信朋友圈图片不压缩,成功造成产品总监的注意袄。

微信朋友圈图片不压缩
上一篇:24小时开锁换锁服务:1861707(微信同号) 下一篇:没有了