embed a image in email body from saving and picking in sdcard in android
问题 I'm trying to embed a inline image in email body by saving in sdcard and then picking from that place but image is not being shown and just "obj" is shown there.Kindly help me out,here is the code of my function: { Bitmap newImg=BitmapFactory.decodeByteArray(img,0,img.length); String root = Environment.getExternalStorageDirectory().toString(); File myDir = new File(root + "/saved_images"); myDir.mkdirs(); String fname = "stoneage.jpg"; File file = new File (myDir, fname); try{