First of all let me say that this questions is slightly connected to another question by me. Actually it was created because of that.
I have the following code to wr
I used this code for my app and works fine. I only did a litle change.
I changed This:
intent.setDataAndType(Uri.parse(posterFile.getAbsolutePath()),"image/*");
For this:
intent.setDataAndType(Uri.fromFile(posterFile),"image/*");