JavaFX 8のマルチメディアクラスを使用して自分のマルチメディアアプリケーションを作成しています。私は自分のプログラムを実行したときに、幅と高さを自分のStage
と同じにします私がしたいメディア(ビデオ)の幅と高さ。JavaFX MediaPlayer - ステージのサイズ
mp.setOnReady(new Runnable() {
@Override
public void run() {
Timeline slideIn = new Timeline();
Timeline slideOut = new Timeline();
stage.getScene().setOnMouseEntered(e -> {
slideIn.play();
});
stage.getScene().setOnMouseExited(e -> {
slideOut.play();
});
// here I get the width and heigth of the media
int w = mp.getMedia().getWidth();
int h = mp.getMedia().getHeight();
// width is 1280 and heigth is 720 (both values are correct)
if (w != 0 && h != 0) {
//Here Im setting the width and the height of stage
//But when I run my app, stage is a little bit smaller than
//MediaView and I have to resize the stage manually by cca 20px to get the whole view
stage.setWidth(w);
stage.setHeight(h);
stage.centerOnScreen();
//On the other hand, animation works pretty well and
//correctly with the "w" and "h"
mediaBar.setMinSize(w - 100, 100);
mediaBar.setTranslateY(h - 100);
mediaBar.setTranslateX(50);
mediaBar.setOpacity(0);
slideIn.getKeyFrames().addAll(new KeyFrame(new Duration(0), new KeyValue(mediaBar.translateYProperty(), h), new KeyValue(mediaBar.opacityProperty(), 0.0)),
new KeyFrame(new Duration(300), new KeyValue(mediaBar.translateYProperty(), h - 100), new KeyValue(mediaBar.opacityProperty(), 0.9))
);
slideOut.getKeyFrames().addAll(new KeyFrame(new Duration(0), new KeyValue(mediaBar.translateYProperty(), h - 100), new KeyValue(mediaBar.opacityProperty(), 0.9)),
new KeyFrame(new Duration(300), new KeyValue(mediaBar.translateYProperty(), h), new KeyValue(mediaBar.opacityProperty(), 0.0))
);
background.setWidth(w - 100);
background.setHeight(100);
background.setTranslateY(h - 100);
background.setTranslateX(50);
background.setOpacity(0);
slideIn.getKeyFrames().addAll(new KeyFrame(new Duration(0), new KeyValue(background.translateYProperty(), h), new KeyValue(background.opacityProperty(), 0.0)),
new KeyFrame(new Duration(300), new KeyValue(background.translateYProperty(), h - 100), new KeyValue(background.opacityProperty(), 1))
);
slideOut.getKeyFrames().addAll(new KeyFrame(new Duration(0), new KeyValue(background.translateYProperty(), h - 100), new KeyValue(background.opacityProperty(), 1)),
new KeyFrame(new Duration(300), new KeyValue(background.translateYProperty(), h), new KeyValue(background.opacityProperty(), 0.0))
);
} else {
//music
}
duration = mp.getMedia().getDuration();
updateValues();
}
});
私はまだわからないが、Stage
クラスについて重要なことがあると思う。
initStyle
をStage
からStageStyle.UNDECORATED
に設定すると、MediaView
の全体が表示されます。しかし、私はこのスタイルを望んでいません。
誰でもこの問題を解決するのに役立つでしょうか?これは私の最初のヘルプのための質問であるため、私は私の問題を正しく記述することを願っています。ありがとう。