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