I am programmatically taking screenshot of the screen in my android app using the following code. It is working fine. The problem I see is, it is taking screenshot of the en
Try this:
Bitmap resizedImage = Bitmap.createScaledBitmap(old_bitmap,desiredimageWidth,desiredimageHeight, true);