如何在Retina Display上使JavaFX应用程序不模糊

时间:2013-04-17 14:19:37

标签: scala javafx-2 javafx retina-display

MacBook Pro Retina屏幕上的JavaFX应用程序显得模糊。有没有办法显示应用程序锐利?在博客文章/评论中提到目前情况如此:http://fxexperience.com/2012/11/retina-display-macbook-pro/

这是fxml的例子:

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.layout.*?>
<?import javafx.scene.control.*?>


<VBox xmlns:fx="http://javafx.com/fxml">
    <MenuBar>
        <Menu text="File">
            <items>
                <MenuItem text="Exit"/>
            </items>
        </Menu>
    </MenuBar>
</VBox>

示例代码:

import javafx.application.Application
import javafx.fxml.FXMLLoader
import javafx.scene.Scene
import javafx.scene.layout.VBox
import javafx.scene.paint.Color
import javafx.stage.Stage

object CreateFX extends App {
    override def main(args: Array[String]) = {
      println("CreateFX starting up...")
      Application.launch(classOf[CreateFX], args: _*)
    }
}

class CreateFX extends Application {
    def start(stage: Stage): Unit = {
        println("start "+stage)

        stage.setTitle("CreateFX")

        val root: VBox = FXMLLoader.load(getClass().getResource("MainScreenVBox.fxml"))//new VBox

        val scene = new Scene(root, 800, 600)
        scene.setFill(Color.GREEN)

        stage.setScene(scene)
        stage.show()
    }
}

结果: Resulting application

Java版本:1.7.0_21

1 个答案:

答案 0 :(得分:5)

在评论的同一篇文章中,Richard Blair表示这是在最新的JavaFX版本中修复的(可在Java 8的EAP中找到,可下载here