I am using Bitmap b = Bitmap.createBitmap(mView.getDrawingCache());
for creating image from my view so I can than share it. It works perfectly but when mView is bigger then the phone screen I get a null pointer exeption:
java.lang.NullPointerException: Attempt to invoke virtual method 'int android.graphics.Bitmap.getWidth()' on a null object reference
Anyone knows how to fix this?
So I didn't find any way to get around this error so I created an image in a different way(by drawing on canvas):
Hope this helps anyone with the same problem.