Вы можете использовать следующий метод, чтобы получить скриншот отображаемого экрана
public static Bitmap getScreenShot() {
// get the current screen .
Bitmap bitmap;
bitmap = new Bitmap(Display.getWidth(), Display.getHeight());
Display.screenshot(bitmap);
// return the screen shot
return bitmap;
}