Is it possible to take a screenshot of the current screen in a BlackBerry Application? I have a button in my screen, when I click the button I want to send an email with the screenshot of the current screen.
标签:
blackberry
相关问题
- How to make background of BrowserField transparent
- Eclipse Blackberry Preprocessor Not Working?
- Cannot register in sample BlackBerry push applicat
- Problem sending AJAX request with headers on Black
- decrypting data with AES/CBC/PKCS5Padding using bl
相关文章
- To get the module names in blackberry
- How to close a global dialog and display another i
- How to install a draft app on a blackberry sandbox
- FB SDK not working on OS 7
- Parent & Child Node with different images & Clicka
- SQLite for BlackBerry
- How to send SMS Programmatically in Blackberry
- Twitter Integration in Blackberry: Login Page not
You can take a screenshot by calling
Display.screenshot(aBitmap)
, passing a Bitmap of the right size. There's also a version of the method that can take a screenshot of a part of the screen.You can use the following method to get a screenshot of the displayed screen