I am new to android. I have created one app to upload an image to server. It works perfectly for small size images but for larger images(>1 MB), this does not work. Here is
In my app too i face this problem.what i have done was, i uploaded the images and set that to imageview and i gave static height and width to be 300*300. and saved the bitmap in server.
bitmap = Bitmap.createScaledBitmap(bitmap,desiredImageWidth,desiredImageHeight,true);
sace this in server. here desiredImageWidth, desiredImageHeight are static values.