更改屏幕方向时,窗口小部件位置会失真

时间:2018-02-04 07:48:04

标签: python kivy

我使用buildozer 0.34和kivy 1.10.0构建了一个apk,在我的buildozer.spec中,我将方向设置为:

orientation = all

我用肖像打开我的应用程序,它看起来像这样:

enter image description here

但是,当我在横向位置更改转动/旋转手机时,它看起来像这样:

enter image description here

此外,当我在横向位置运行我的应用程序时,它正常工作,但在纵向旋转时,它会扭曲窗口小部件的位置。

这是我的代码:

from kivy.app import App
from kivy.uix.button import Button

class TestApp(App):
    def build(self):
        return Button(text= "Hello World")

TestApp().run()

0 个答案:

没有答案