Android: Intent.ACTION_SEND with EXTRA_STREAM doesn’t attach any image when choosing Gmail app on htc Hero

For me the problem was solved with the following lines of code: Bitmap screenshot = Bitmap.createBitmap(_rootView.getWidth(), _rootView.getHeight(), Bitmap.Config.RGB_565); _rootView.draw(new Canvas(screenshot)); String path = Images.Media.insertImage(getContentResolver(), screenshot, “title”, null); Uri screenshotUri = Uri.parse(path); final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); emailIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri); emailIntent.setType(“image/png”); startActivity(Intent.createChooser(emailIntent, “Send email using”)); The key thing is that I’m saving the screen-shot to … Read more