KIVY:如何获得猕猴桃的滚动方向?

时间:2020-05-28 18:18:57

标签: python scroll kivy

我找到了这段代码:

A[0] = 3
A[1] = 2
A[2] = 6
A[3] = -1
A[4] = 4
A[5] = 5
A[6] = -1
A[7] = 2
A[8] = 1

当它显示滚动运动时,我不能使用它... args中包含字符串,但是if不起作用并且未打印“ hello” ...有人知道为什么吗?

1 个答案:

答案 0 :(得分:1)

您在打印物中看到的是python对象而不是字符串。
因此,您不能只检查字符串。

获取所需内容的更好方法是检查什么按钮产生MouseMotionEvent

    def window_on_touch_down(self, window, mouse_event):
        # scrolling the wheel down will give <MouseMotionEvent button="scrollup"
        if mouse_event.button == "scrollup":
            print('hello')