I have a bitmap taken of a Base64 String from my remote database, (encodedImage is the string representing the image with Base64):
encodedImage
profileImage
If you already have a bitmap, you could use the following code to resize:
Bitmap originalBitmap = ; Bitmap resizedBitmap = Bitmap.createScaledBitmap( originalBitmap, newWidth, newHeight, false);