我有一个MediaView
,我想要播放一个全屏视频..我无法找到我MediaView
的正确父级..它给了我这个错误
javafx.scene.media.MediaView cannot be cast to javafx.scene.Parent
这是我的fxml文件
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.media.*?>
<?import javafx.scene.layout.AnchorPane?>
<MediaView fx:id="astrolabe_intro" fitHeight="200.0" fitWidth="200.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="astrolabe.astrolabe_introController" />
那是我的控制器
import java.io.File;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.Initializable;
import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;
public class astrolabe_introController implements Initializable {
String workingDir = System.getProperty("user.dir");
File video = new File(workingDir, "src/astrolabe/img/astrolab_movie.mp4");
Media m = new Media(video.toURI().toString());
MediaPlayer astrolabe_intro = new MediaPlayer(m);
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
// TODO Auto-generated method stub
astrolabe_intro.play();
}
}
答案 0 :(得分:0)
您不得将MediaView
用作根节点,因为它不会从Parent
延伸。尝试将MediaView
包裹在Pane
内。例如:
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.media.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane fx:id="anchorPane" fitHeight="200.0" fitWidth="200.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="astrolabe.astrolabe_introController" >
<MediaView fx:id="astrolabe_intro"/>
</AnchorPane>
N.B。 您可能还想为MediaView
和MediaPlayer
定义不同的引用名称。在上面的示例中,您已定义fx:id
MediaView
并将MediaPlayer
引用为astrolabe_intro