如何在 Kivy 中设置 Switch 的图像?

How to set the images of a Switch in Kivy?

我喜欢在 kivy 中自定义 On/Off 开关。对于一个按钮,我知道该怎么做。 kv 代码如下所示:

Button:
    background_normal: 'gfx/offButton.png'
    background_down: 'gfx/onButton.png' 

现在我想知道 Switch 小部件。有什么想法吗?

开关没有控制它的属性。也许它应该,但它的行为也不仅仅是 on/off 因为你可以拖动滑块。

如果您只想 active/inactive 选择,可以使用 CheckBox(它确实具有背景图像属性)。