Display kivy slider value as it changes [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I was wondering whether it was possible to displays kivy spinner values as a moving label, so that the user knows exactly what the current value of the slider is. Thanks 回答1: you just bind a listener to the value change event some_label = Label(...) my_slider = Slider(...) def OnSliderValueChange(instance,value)