gpt4 book ai didi

java - 从 4k 显示器拖动到全高清显示器时,应用程序变黑

转载 作者:行者123 更新时间:2023-11-30 06:53:06 24 4
gpt4 key购买 nike

我的笔记本电脑有 4k 显示屏。我的外部显示器是 1920。当我将 Java Swing 应用程序窗口从 4k 显示器拖到外部显示器上时,除了窗口框架之外,它变得完全黑色。我是否在外接显示器上将其最大化并不重要。

这是我从 Oracle.com 获得的 HelloWorldSwing 示例。它显示了完全相同的行为。

import javax.swing.*;        

public class HelloWorldSwing {
/**
* Create the GUI and show it. For thread safety,
* this method should be invoked from the
* event-dispatching thread.
*/
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("HelloWorldSwing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//Add the ubiquitous "Hello World" label.
JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);

//Display the window.
frame.pack();
frame.setVisible(true);
}

public static void main(String[] args) {
//Schedule a job for the event-dispatching thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}

这看起来像是 Swing 中的一个错误。无论如何,我必须找到解决方案/解决方法。有什么想法吗?

我正在运行 jdk/jre 1.8.0 121。

最佳答案

尽管到目前为止,我在使用 Swing 尝试过的任何多屏幕环境中都没有遇到过这样的问题 - 我可能会帮助调试它。

尝试运行此代码示例:

public class HelloWorldSwing
{
private static void createAndShowGUI ( final GraphicsDevice device )
{
final GraphicsConfiguration conf = device.getDefaultConfiguration ();

final JFrame frame = new JFrame ( "HelloWorldSwing", conf );
frame.setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );

final JLabel label = new JLabel ( "Hello World", SwingConstants.CENTER );
frame.getContentPane ().add ( label );

final Rectangle sb = conf.getBounds ();
frame.setBounds ( sb.x + sb.width / 2 - 100, sb.y + sb.height / 2 - 100, 200, 200 );

frame.setVisible ( true );
}

public static void main ( final String[] args )
{
SwingUtilities.invokeLater ( new Runnable ()
{
@Override
public void run ()
{
final GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment ();
final GraphicsDevice[] devices = env.getScreenDevices ();
for ( final GraphicsDevice device : devices )
{
if ( device.getType () == GraphicsDevice.TYPE_RASTER_SCREEN )
{
createAndShowGUI ( device );
}
}
}
} );
}
}

这基本上会在系统中可用的每个屏幕设备上放置一个框架。它还将为每个帧提供默认的屏幕图形配置。

检查您将框架拖到笔记本屏幕时是否遇到同样的问题,以及是否还有其他问题。

Edit1: 此外,了解您使用哪个 JDK/JRE 来运行代码示例可能非常重要,因为存在一些相关的内部更改。如果您正在运行一些旧的 JDK,那么在较新的 Mac OS X 版本上它可能不是最好的主意。

编辑2:我会尝试做更多事情来了解更多信息:

  1. 设置 Nimbus Look and Feel在显示框架之前,尝试在安装了自定义 L&F 的情况下拖动它们。

  2. 设置系统( native )外观为 shown in the tutorial here - 这可能会对 Mac OS X 产生一些影响。

  3. 尝试运行 Java FX example并将其拖动到显示器之间,看看是否遇到同样的问题 - 您已经在使用 JDK 8,所以它应该很容易做到。 Java FX 只是不久前推出的新 UI 框架。

总的来说,我可以说 Swing 对高分辨率显示器的支持相当差,因此即使一切正常运行并且您没有出现黑屏,您也会看到其他问题,例如 UI 模糊或质量低下文本渲染。

关于java - 从 4k 显示器拖动到全高清显示器时,应用程序变黑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42367058/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com