I am getting error while taking screenshot and create bitmap with cropping picture
below is my code
View v1 = mKittyBGLayer.getRootView(); v1
Bitmap resultBitmap = Bitmap.createBitmap(sourceBitmap, 0, 0, sourceBitmap.getWidth() - 1, sourceBitmap.getHeight() - 1);
Like in lists, it starts from 0, so width must be bitmap width - 1.