Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public Bitmap buildLongScreenshot() {
- try {
- Bitmap createBitmap = Bitmap.createBitmap(this.mLongBitmapDrawable.getIntrinsicWidth(), this.mTotalHeight, Bitmap.Config.ARGB_8888);
- drawLongScreenshot(new Canvas(createBitmap));
- return createBitmap;
- } catch (OutOfMemoryError e) {
- e.printStackTrace();
- return null;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment