Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm loading images with com.commonsware.cwac.cache.WebImageCache (it works) Next I want to be able to post it on facebook through an Intent. When facebook is launched, it doesn't show any image.

Code when I want to share an item:

File f = ((WebImageCache) ((MyApplication) getApplication()).getCache()).buildCachedImagePath(String.valueOf(thumb.getUrl()));
downloadedPic =  new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),f.getName());

//f.getName() returns me "8353158d7e2669771a86a2b4eb73c7c"
//downloadedPic.path = "/cache/8353158d7e2669771a86a2b4eb73c7c"

sharingIntent.setType("image/jpeg");
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(downloadedPic));
startActivity(Intent.createChooser(sharingIntent, "Share image using")); 

Any ideas? based on : http://mobile.tutsplus.com/tutorials/android/android-sdk-sending-pictures-the-easy-way/ Tx

share|improve this question
The file "downloadedPic" exsists? – Robert Hahn Mar 20 '12 at 16:09
yes: //downloadedPic.path = "/cache/8353158d7e2669771a86a2b4eb73c7c" – estoke Mar 20 '12 at 16:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.