我正在尝试使用python函数(getText
,见下文)在kivy lang中设置属性,但是我得到了一个
AttributeError:'NoneType'对象没有属性'bind'。
这是我的代码:
KV
BoxLayout:
padding: root.width * .02, root.height * .02
Label:
text: app.getText()
halign: "center"
markup: True
font_size: root.height / 20
text_size: self.width, None
center_y: .5
on_ref_press: app.on_ref_press(*args)
BotonAtras:
on_press: app.root.current = "intro"
的.py
class Calculator(App):
def build(self):
return kivyfile
def getText(self):
return ("Hola esta es nuestra aplicacion que fue echa usando [b][ref=kivy]kivy[/ref][/b]\n"
"grupo esta compuesto por: \n"
"Ruben Perez \n"
"Anthony Cambridge \n")