我想知道什么?
在这个链接中解释(很少),但不是从初学者的角度来解释.
我有2个文件
test.py
class Get_People(BoxLayout):
pass
class Get_Boys(BoxLayout):
pass
class Get_Girls(BoxLayout):
pass
class TestApp(App):
def build(self):
self.load_kv('dates_test.kv')
return Get_People()
Run Code Online (Sandbox Code Playgroud)
dates_test.kv文件
<Get_People>:
orientation: 'vertical'
Button:
name: root_btn
id: root_btn
text: "I am Root Button"
on_release: change_label_b
Label:
id: root_lbl
text: "I am Root Label"
Get_Boys:
Get_Girls:
<Get_Boys>:
Button:
id: button_b
text: "Button for boys"
on_press: change_label_root
on_release: change_label_g
Label:
id: label_b
text: "Label for boys"
<Get_Girls>:
Button:
id: button_g
text: "Button for girls" …Run Code Online (Sandbox Code Playgroud) 我正在研究一些Android应用程序,并希望添加注册为用户功能.
用户需要使用谷歌+或Facebook注册.知道如何使用python和kivy做到这一点?
这个链接很棒,但需要python开发人员的帮助.