我正在编写一个小型应用程序(具有功能的音频播放器);我使用滑块和进度条来显示当前曲目的进度。但是当轨道改变时,progressBar 和 Slider 占据旧位置(随机机会);
这是fxml的代码:
<StackPane layoutY="64.0" prefHeight="20.0" prefWidth="492.0" AnchorPane.leftAnchor="26.0" AnchorPane.rightAnchor="24.0">
<children>
<ProgressBar id="progress" fx:id="progressBar" cache="true" cacheHint="QUALITY" disable="true" maxHeight="-1.0" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" opacity="1.0" prefHeight="9.0" prefWidth="-1.0" progress="0.0" />
<Slider fx:id="progressSlider" disable="false" opacity="1.0" value="0.0" />
</children>
</StackPane>
当新轨道覆盖旧图形时,它就消失了。
有谁能够帮助我?