我正在用JavaFX和场景构建器编程一个音乐播放器。我的问题是,如果我调整我的程序的窗口大小,UI不会随之增长。如何使UI具有响应性?
在我加了SplashScreen之前,它工作得很好。从那时起,我试图让它工作,但我不能找到任何解决方案在网上!
请帮帮我,提前谢谢!
package sample;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
public static boolean isSplashLoaded = false;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Juggle v0.1");
primaryStage.setScene(new Scene(root, 1024, 640));
primaryStage.setResizable(true);
primaryStage.show();
}
}
package sample;
import javafx.animation.FadeTransition;
import javafx.beans.value.ObservableValue;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.*;
import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;
import javafx.scene.media.MediaView;
import javafx.util.Duration;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
public class Controller implements Initializable{
public MenuItem openFile;
public BorderPane parent;
public void openFile(){
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Open File...");
fileChooser.getExtensionFilters().addAll(
new FileChooser.ExtensionFilter("Audio Files", "*.wav", "*.mp3"));
File f = fileChooser.showOpenDialog(parent.getScene().getWindow());
if ( f != null) {
Media pick = new Media(f.toURI().toString());
MediaPlayer player = new MediaPlayer(pick);
MediaView view = new MediaView(player);
parent.getChildren().add(view);
player.play();
}
else{
}
}
public void loadSplashScreen() throws IOException {
Main.isSplashLoaded = true;
BorderPane pane = FXMLLoader.load(getClass().getResource("Splash.fxml"));
parent.getChildren().setAll(pane);
FadeTransition fadeIn = new FadeTransition(Duration.seconds(3), pane);
fadeIn.setFromValue(0);
fadeIn.setToValue(1);
fadeIn.setCycleCount(1);
FadeTransition fadeOut = new FadeTransition(Duration.seconds(3), pane);
fadeOut.setFromValue(1);
fadeOut.setToValue(0);
fadeOut.setCycleCount(1);
fadeIn.play();
fadeIn.setOnFinished((e) ->{
fadeOut.play();
});
fadeOut.setOnFinished((e) -> {
try {
BorderPane parentContent = FXMLLoader.load(getClass().getResource("sample.fxml"));
parent.getChildren().setAll(parentContent);
} catch (IOException e1) {
e1.printStackTrace();
}
});
}
@Override
public void initialize(URL location, ResourceBundle resources) {
if(!Main.isSplashLoaded){
try {
if(!Main.isSplashLoaded){
loadSplashScreen();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
FXML:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<BorderPane BorderPane.alignment="CENTER" fx:id="parent"
maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
minWidth="-Infinity" prefHeight="640.0" prefWidth="1024.0"
style="-fx-background-color: #93F979;"
xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="sample.Controller">
<bottom>
<BorderPane prefHeight="93.0" prefWidth="600.0" BorderPane.alignment="CENTER">
<top>
<HBox alignment="TOP_CENTER" prefHeight="32.0" prefWidth="800.0" BorderPane.alignment="TOP_CENTER">
<children>
<Label alignment="CENTER" prefHeight="17.0" prefWidth="50.0" text="00:00" textAlignment="CENTER" />
<ProgressBar prefHeight="10.0" prefWidth="900.0" progress="0.0">
<HBox.margin>
<Insets top="4.0" />
</HBox.margin></ProgressBar>
<Label alignment="CENTER" prefHeight="17.0" prefWidth="50.0" text="00:00" textAlignment="CENTER" />
</children>
</HBox>
</top>
</BorderPane>
</bottom>
<center>
<ImageView fitHeight="150.0" fitWidth="200.0" pickOnBounds="true" preserveRatio="true"
BorderPane.alignment="CENTER">
<image>
<Image url="@../Music.png" />
</image>
</ImageView>
</center>
<top>
<MenuBar BorderPane.alignment="CENTER">
<menus>
<Menu mnemonicParsing="false" text="File">
<items>
<MenuItem fx:id="openFile" mnemonicParsing="false" onAction="#openFile" text="Open..." />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Edit">
<items>
<MenuItem mnemonicParsing="false" text="Delete" />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Help">
<items>
<MenuItem mnemonicParsing="false" text="About" />
</items>
</Menu>
</menus>
</MenuBar>
</top>
</BorderPane>
飞溅FXML:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.image.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane fx:id="BorderPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="640.0" prefWidth="1024.0" style="-fx-background-color: #93F979;" BorderPane.alignment="CENTER" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Main">
<center>
<ImageView fitHeight="150.0" fitWidth="200.0" nodeOrientation="INHERIT" pickOnBounds="true" preserveRatio="true" BorderPane.alignment="CENTER">
<image>
<Image url="@../Splash.png" />
</image>
</ImageView>
</center>
</BorderPane>
使用BorderPane类的静态方法,如下所示
BorderPane.setAlignment ( node , Pos.CENTER );
我正在尝试一个简单的Java FX程序,它可以创建一个窗口,我所需要的只是增加读取已删除文件的能力。我得到了以下代码片段,它不会抛出任何错误,但也不允许我删除任何内容。当我试图删除文件时,它会显示一个红色光标(不允许使用windows光标) 我使用的是Windows 8机器和JDK 8.0_60版。不确定问题出在哪里。代码有问题吗?我错过什么了吗? 我试过的- 已尝试更改传输模式 尝试检查文件权限
当我运行以下程序时: 我只在文本标签周围得到一个红色框,但是当我取消注释上面的Platform.runLater()块内的两行时,我在外椭圆周围得到一个红色框,这就是我想要的。因此,在我看来,堆栈窗格的布局边界没有从模型描述中正确设置,因为边界仅从标签控件中确定。但是当我在 Platform.runLater() 中强制无效时,布局边界就在它们应该在的位置。 为什么会发生这种情况,我该如何防止?我
问题内容: 他们是否是使特定窗口在Linux上无边界的标准方法?我相信窗口边框是由您的窗口管理器绘制的,所以可能我只需要使用一个特定的窗口管理器(可以找到,我只需要知道哪个窗口管理器即可)…我希望是所有的窗口管理器都可能遵循一些标准,使我能够以编程方式执行此操作… 问题答案: 使用Xlib和old : 这些天NETWM / EWMH提示是首选,但据我所知,所有现代的窗口管理器还支持这一点。
问题内容: 两种方法中的哪一种符合W3C标准?它们在浏览器中的表现均符合预期吗? 边界:无; 边界:0; 问题答案: 两者均有效。 这是你的选择。 我喜欢,因为它更短。我觉得这更容易阅读。您可能会发现更清晰。我们生活在功能强大的CSS后处理器世界中,因此我建议您使用您喜欢的任何东西,然后通过“压缩机”运行它。这里没有值得战斗的圣战。 综上所述,如果您要手写所有的生产CSS,尽管评论中有些抱怨,但我
我有一些关于滚动窗格的默认背景和边框的问题。使用这种风格使问题看得更清楚。 我试过这种风格,但没有运气,只有红色的边框消失了,留给我的是蓝色的。 我查看了这个旧的后JavaFX隐藏滚动窗格灰色边框和http://docs.oracle.com/JavaFX/2/ui_controls/editor.htm 这行代码也不起作用 谢谢
问题内容: 因此,我知道JavaFx在使用线程时更新GUI的方法称为Task,但是代码是否以相似的方式工作或存在任何差异。让我举一个例子: GUI之外的另一个作为线程运行的类 在实际的GUI中 Task是否以完全相同的方式工作?还是存在差异?如果存在差异,您将如何修改此代码以在JavaFx项目中工作? 问题答案: 您是否正在寻找JavaFX中的SwingUtil.invokeLater副本。如果是