我试图每秒拍摄一次屏幕快照,以找出用户是否在另一个应用程序的菜单中.我在Display中找到了一个名为capturePhoto(…)的函数,但这是一个无效函数.我也用Robot尝试过,但不支持.
我发现的功能:Display.getInstance().capturePhoto(null);
我不知道那里是什么,而不是null
最佳答案
要使用Codename One截屏,可以使用以下静态方法:
原文链接:https://www.f2er.com/java/532961.html /**
* Returns a screenshot of the currently displayed Form,or null if no form
* is shown
*
* @return
*/
public static Image getScreenshot() {
Form form = Display.getInstance().getCurrent();
if (form != null) {
Image screenshot = Image.createImage(form.getWidth(),form.getHeight());
form.paintComponent(screenshot.getGraphics(),true);
return screenshot;
} else {
return null;
}
}
它可以在Codename One支持的所有平台上运行,不仅适用于Android.