打包的Kivy应用程序在视觉上不正确

时间:2017-07-17 20:34:59

标签: python kivy pyinstaller

我有一个简单的表应用程序,我使用Pyinstaller为os x打包。如果我运行main.py,小部件会正确显示:

Correct view

根据docs打包应用程序并打开.app标签的大小等等搞乱了。事实上,如果还有其他小部件,那么这些小部件的大小也不会正确。

enter image description here

我的kv或代码是否存在问题?我有一个大型的应用程序,我已经尝试打包一个星期,我已经把事情搞得最后一点了。

其他信息:我在Mac Yosemite上。如果需要,我可以提供日志,但我没有看到任何错误。

此处main.py

from kivy.app import App
from kivy.uix.label import Label
from kivy.uix.scrollview import ScrollView
from kivy.properties import BooleanProperty, ObjectProperty
from kivy.lang import Builder

kv = """
<Cell>:
    size_hint: (None, None)
    width: 400
    height: 60
    canvas.before:
        Color:
            rgba: [0.23, 0.23, 0.23, 1] if self.is_even else [0.2, 0.2, 0.2, 1]
        Rectangle:
            pos: self.pos
            size: self.size

<Table>:
    grid: grid
    bar_width: 25
    scroll_type: ['bars', 'content']
    bar_color: [0.4, 0.7, 0.9, 1]
    bar_inactive_color: [0.2, 0.7, 0.9, .5]
    do_scroll_x: True
    do_scroll_y: True
    GridLayout:
        id: grid
        cols: 15
        rows: 30
        size_hint: (None, None)
        width: self.minimum_width
        height: self.minimum_height
"""

Builder.load_string(kv)


class Cell(Label):
    is_even = BooleanProperty(None)


class Table(ScrollView):

    grid = ObjectProperty(None)

    def __init__(self, *args, **kwargs):
        super(Table, self).__init__(*args, **kwargs)

        for i in range(30):
            for j in range(15):
                text = "data row: {}, column: {}".format(i, j)
                self.grid.add_widget(Cell(text=text, is_even=i % 2 is 0))


class TestApp(App):
    def build(self):
        return Table()


if __name__ == '__main__':
    TestApp().run()

1 个答案:

答案 0 :(得分:0)

您可能需要在尺寸上使用dpsp。见kivy.org/docs/api-kivy.metrics.html