0

i'm storing images that i download from internet here: getContext().getFilesDir().getAbsolutePath();

I need to share some of these images with android share intent (ACTION_SEND), but for some reason, the intent can't access to these images.

How can it be done?

If it is not possible to access normally, ¿it is possible to access with a ContentProvider? ¿How?

thanks

NullPointerException
  • 36,107
  • 79
  • 222
  • 382

1 Answers1

-1

Copy the file to someplace both apps can read, such as external storage.

Gabe Sechan
  • 90,003
  • 9
  • 87
  • 127