我使用下面的代码来检查有多少个屏幕并选择最大的一个来显示我的应用程序。但是,我还没有成功检测到显示器被镜像而不是扩展的情况。有什么办法可以做到吗?
if (GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices().length > 1) {
findBiggestScreen(GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()).setFullScreenWindow(this);
} else {
GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().setFullScreenWindow(this);
}