Quote:
Originally Posted by praveens How to take a Screenshot of the current screen using Display class any example helpful.am using Display.screenshot() but dont how to pass the current screen events |
try this
public Bitmap _bmp = new Bitmap(Display.getWidth(), Display.getHeigth());
Display.screenshot(_bmp, 0,0, Display.getWidth(), Display.getHeigth());
you can then save it sd card using another class to convert to jgp or png