【问题标题】:Kivy Get Position of Widget in Scatter while moving itKivy 在移动时获取小部件在 Scatter 中的位置
【发布时间】:2016-02-17 17:04:16
【问题描述】:
我搜索了很多,但没有找到解决方案。我想在 kivy scatter 中抓取一个小部件,并在每次移动它时获取它的位置。所以它可能是这样的:
def onmove_in_scatter(args):
x = args[0]
y = args[1]
print("You are currently here: "+str(x)+":"+str(y))
在我移动小部件时调用该函数很重要。
【问题讨论】:
标签:
python
python-2.7
kivy
【解决方案1】:
当我想做这样的事情时,我会覆盖 on_touch_move。
这是一个完整的*工作示例。 (只需在某个地方放一个 cat.png...)
import kivy
import datetime
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.uix.button import Button
from kivy.factory import Factory
from kivy.lang import Builder
from kivy.uix.floatlayout import FloatLayout
from kivy.uix.scatter import Scatter
Builder.load_string("""
<MyScatter>:
id: cool
#pos: 200, 200
#size: 300,300
Image:
id: img
source: "cat.png"
allow_stretch: True
size: cool.size
<P>:
MyScatter:
""")
class MyScatter(Scatter):
def on_touch_move(self, touch): #magic time!!!!
res = super(MyScatter, self).on_touch_move(touch)
if res: #Yay do something!
print self.center
return res
class P(FloatLayout):
pass
class MyApp(App):
def build(self):
return P()
if __name__ == '__main__':
MyApp().run()