Share Image File from cache directory Via Intent~a

2019-01-13 22:07发布

问题:

I am trying to share image file in cache directory, i have the complete path, but not able to send the file in attachments, the code is

File shareImage=Utils.getBitmapFile();
Log.d("Activity", "get final path in result"+shareImage.getAbsolutePath());
/*MimeTypeMap mime = MimeTypeMap.getSingleton();
String ext=shareImage.getName().substring(shareImage.getName().lastIndexOf(".")+1);
String type = mime.getMimeTypeFromExtension(ext);
shareIntent.setType(type);
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/*");
Uri shareImageUri = Uri.fromFile(shareImage);
Uri shareImageUri = Uri.fromParts("content", shareImage.getAbsolutePath(), null);//("content://"+shareImage.getAbsolutePath()); 
*/


Uri shareImageUri = Uri.fromFile(shareImage);
Log.d("Result ","uri is "+shareImageUri.toString());
shareIntent.putExtra(Intent.EXTRA_STREAM, shareImageUri);
startActivity(Intent.createChooser(shareIntent, "Share Results"));

the above commented code is not working

the send mail shows attachment,but not receiving end there is not attachment, facebook sharing also shows no image in post

what the reason for this??

I have already seen the following SO Links how-to-use-share-image-using-sharing-intent-to-share-images-in-android and many others, none of them are able to resolve the issue

P.S.;

1.The aim is to take screenshot of screen save it in cache directory and share it online from there

2.Yes i do have file, I can pull it via DDMS from device and see on system.

回答1:

what the reason for this?

As noted, other apps do not have access to your app's internal storage.

none of them are able to resolve the issue

Feel free to open a fresh StackOverflow question, where you explain, completely and precisely what specific solutions you have tried and what specific problems you have encountered.

but that does not seems to be working as per SO post!!!

Feel free to open a fresh StackOverflow question, where you explain, completely and precisely what "that does not seems to be working" means.

Or, use FileProvider, which offers this capability with no code required beyond an entry for it in your manifest.

Or, store your image on external storage, such as getExternalCacheDir().



回答2:

I followed @CommonsWare's advice and used a FileProvider. Assuming your image is already in the internal cache directory as cache/images/image.png, then you can use the following steps. These are mostly a consolidation of the documentation.

Set up the FileProvider in the Manifest

<manifest>
    ...
    <application>
        ...
        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.example.myapp.fileprovider"
            android:grantUriPermissions="true"
            android:exported="false">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/filepaths" />
        </provider>
        ...
    </application>
</manifest>

Replace com.example.myapp with your app package name.

Create res/xml/filepaths.xml

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <cache-path name="shared_images" path="images/"/>
</paths>

This tells the FileProvider where to get the files to share (using the cache directory in this case).

Share the image

File imagePath = new File(context.getCacheDir(), "images");
File newFile = new File(imagePath, "image.png");
Uri contentUri = FileProvider.getUriForFile(context, "com.example.app.fileprovider", newFile);

if (contentUri != null) {

    Intent shareIntent = new Intent();
    shareIntent.setAction(Intent.ACTION_SEND);
    shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); // temp permission for receiving app to read this file
    shareIntent.setDataAndType(contentUri, getContentResolver().getType(contentUri));
    shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
    startActivity(Intent.createChooser(shareIntent, "Choose an app"));

}

Documentation

  • FileProvider
  • Storage Options - Internal Storage
  • Sharing Files
  • Saving Files


回答3:

I share cached image by followed steps .

1.Copy your cached image to target path.

public static File copyImage(String sourcePath, String targetPath){
        try {
               InputStream in = new FileInputStream(sourcePath);
               OutputStream out = new FileOutputStream(targetPath);
               byte[] buf = new byte[1024];
               int len;
               while ((len = in.read(buf)) > 0) {
                      out.write(buf, 0, len);
               }
               in.close();
               out.close();
               return new File(targetPath);
          } catch (IOException e) {
               e.printStackTrace();
               return null;
          }
  }

2.Get the Uri of copy file.

Uri uri = Uri.fromFile(target);

3.Share image by intent

    File dir = new File(Constant.INKPIC_PATH);//your custom path,such as /mnt/sdcard/Pictures
    if(!dir.exists()){
        dir.mkdirs();
    }
    File f = new File(dir,"temporary_file.jpg");
    File target = copyImage(url,f.getAbsolutePath());
    Uri uri = Uri.fromFile(target);
    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_SEND);
    intent.setType("image/*");
    intent.putExtra(Intent.EXTRA_STREAM,uri );
    context.startActivity(intent);