我开始意识到一款带有覆盆子和触摸屏的网络收音机。我在屏幕上放了几个按钮,我想为所有按钮实现一个回调功能。不同于if-else结构按下了哪个按钮。
KV-文件:
BoxLayout:
Button:
text: "PLAY"
on_press: root.ctrl_buttons()
Button:
text: "STOP"
on_press: root.ctrl_buttons()
蟒-文件:
def ctrl_buttons(self):
if "play pressed":
subprocess.check_output("mpc play", shell=True)
elif "stop pressed":
subprocess.check_output("mpc stop", shell=True)
我发现无法使用参数调用回调函数,我可以在if-else结构中区别。
答案 0 :(得分:0)
为什么不在你的函数中使用另一个参数?
def ctrl_buttons(self, button):
if button=="PLAY":
print "pressed play"
elif button=="STOP":
print "pressed stop"
并且在kivy中使用root.ctrl_buttons(self.text)
不记得是否需要另一个参数或者只是传递按钮,但是如果是,则更有效:
def ctrl_buttons(self, button):
if button.text=="PLAY":
print "pressed play"
elif button.text=="STOP":
print "pressed stop"