Kivy Python-文本输入框填充整个浮动布局屏幕



我在Kivy中遇到TextInput的问题。

当我将其添加到其中一个屏幕上的现有FloatLayout时,即使指定了高度,它也会占用整个窗口。我想将其保留在.py文件中,因此请不要在 .kv 文件中添加任何用于调整大小的样式选项。

class WebsiteInput(Screen):
def __init__(self, **kwargs):
super(WebsiteInput, self).__init__(**kwargs)
Clock.schedule_once(self._finish_init)
def _finish_init(self, dt):
# Title Label
self.lbl1 = Label(text="Enter a URL to bind to this button:", pos=(self.x, self.height +132))
self.lbl1.font_name = 'Montserrat-Bold.ttf'
self.lbl1.font_size = 28
self.ids.float_web.add_widget(self.lbl1)
# URL Text Input
self.web_input = TextInput(height=100)
self.web_input.height = 100
self.ids.float_web.add_widget(self.web_input)

如您所见,我尝试在两个不同的位置影响大小,但它仍然填满整个窗口。

要使size属性生效,您需要在相应的轴上Nonesize_hint属性:

class WebsiteInput(Screen):
def __init__(self, **kwargs):
super(WebsiteInput, self).__init__(**kwargs)
Clock.schedule_once(self._finish_init)
def _finish_init(self, dt):
# Title Label
self.lbl1 = Label(text="Enter a URL to bind to this button:",
pos=(self.x, self.height +132))
self.lbl1.font_name = 'Montserrat-Bold.ttf'
self.lbl1.font_size = 28
self.ids.float_web.add_widget(self.lbl1)
# URL Text Input
self.web_input = TextInput(height=100, 
size_hint = (1,  None))
self.ids.float_web.add_widget(self.web_input)

相关内容

  • 没有找到相关文章

最新更新