Skip to content

Instantly share code, notes, and snippets.

@oluwabajio
Created September 8, 2020 21:08
Show Gist options
  • Save oluwabajio/104b69f8b9a56958d83ee3700403c8fd to your computer and use it in GitHub Desktop.
Save oluwabajio/104b69f8b9a56958d83ee3700403c8fd to your computer and use it in GitHub Desktop.
Capture Full Screen Android
private Bitmap captureScreen() {
View v = getWindow().getDecorView().getRootView();
v.setDrawingCacheEnabled(true);
Bitmap bmp = Bitmap.createBitmap(v.getDrawingCache());
v.setDrawingCacheEnabled(false);
return bmp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment