Kivy TextInput文本溢出。光标在TextInput视口外

时间:2019-03-11 10:03:25

标签: kivy

最后一个字母溢出

我正在使用Kivy 1.10.1。我添加了文本输入(多行= False)。上面输入的句子是“这是输入到Kivy中的长句子”。所有字母均已输入。但是最后一个字母-“ y”在文本输入之外。 我尝试过更改填充大小,边框大小和更改textinput本身的大小。我不知道我是在做错什么,还是库中的错误。

编辑:(我应该在这里添加小部件代码)

text_input: input_text_field

canvas:
    Color:
        rgba: self.background_color_intensity_red, self.background_color_intensity_green, self.background_color_intensity_blue, 1
    Rectangle:
        size: 396, 768
        pos: self.pos
        source: "sprites/phone.png"

BoxLayout:
    size: 354, 598
    pos: 21, 96
    orientation: 'vertical'

    BoxLayout:
        size_hint: 1, 0.1
        pos: root.pos
        orientation: 'horizontal'

        Image:
            size_hint: 0.15, 1
            source: "sprites/profile_pic.png"

        TextInput:
            id: input_text_field
            size_hint: 0.85, 0.5
            pos_hint: {'top': 0.75}
            background_color: 1,1,1,1
            border: (20, 20, 20, 20)
            multiline: False
            halign: 'center'
            focus: True
            on_text_validate: self.parent.parent.parent.on_text_input()

    BoxLayout:
        size_hint: 1, 0.9
        pos: root.pos
        orientation: 'vertical'

谢谢。

0 个答案:

没有答案