我尝试使用 python、kivy 和 buildozer 为 android 制作一个简单的 hello world 应用程序。
我的 hello.py 文件是
from kivy.app import App
from kivy.uix.button import Label
class Hello2App(App):
def build(self):
return Label()
if __name__=="__main__":
Hello2App().run()
我的 hello.kv 文件
<Label>:
text: 'Hello World!'
我在 ubuntu 中使用 buildozer 来编译 apk。sudo buildozer android 调试部署
我是否需要像在 pygame 和 Tkinter 中那样应用循环来显示 gui 或窗口