如何在kivy python中使用用户输入在网格布局中添加标签和按钮



我是kivy的新手。。。我想做一个待办事项列表应用程序。。。。并想添加一个来自用户的任务名称和一个按钮,该按钮可以在按下时获得勾号。。。。

一些我是如何在屏幕上获得标签的,但我无法获得。

这个主要.py

class ListWidget(RecycleView):
def update(self):
self.data = [{'text': str(item)}for item in self.item]

def __init__(self, **kwargs):
super().__init__(**kwargs)
self.item = []
class RootWidget(BoxLayout):
inputbutton = ObjectProperty(None).
inputcontent = ObjectProperty(None).
outputcontent = ObjectProperty(None).
def add_item(self):
if self.inputcontent.text != " ":
formatted = f'n*{self.inputcontent.text}'
self.outputcontent.item.append(formatted)
self.outputcontent.update()
self.inputcontent.text = ""
class MyApp(App):
def build(self):
return RootWidget()
MyApp().run()

这是我的.kv文件

<RootWidget>
inputbutton: inputbutton
inputcontent: inputcontent
outputcontent: outputcontent
orientation: 'vertical'
BoxLayout:
orientation: 'vertical'
size_hint: 1, 0.25
Label:
text: 'TO-DO'
font_size: 32
size_hint: 1,0.3
BoxLayout:
orientation: 'horizontal'
Button:
id: inputbutton
size_hint: 0.25, 1
text: 'add'
on_press:root.add_item()
TextInput:
id: inputcontent
multiline: False

ListWidget:
id: outputcontent
viewclass: 'Label'
orientation: 'vertical'

RecycleBoxLayout:
default_size: None,dp(56)
default_size_hint: 0.4,None
size_hint_y: None
height:self.minimum_height
orientation: 'vertical'

这是输出这是输出

您可以使用自定义viewclass来执行您想要的操作。类似这样的东西:

class LabelAndButton(GridLayout):
text = StringProperty()  # must have a text property (used in ListWidget.data)

然后在kv中,您可以将此类用作viewclass,并定义其外观:

ListWidget:
id: outputcontent
viewclass: 'LabelAndButton'  # use the new class
orientation: 'vertical'

RecycleBoxLayout:
default_size: None,dp(56)
default_size_hint: 0.4,None
size_hint_y: None
height:self.minimum_height
orientation: 'vertical'

<LabelAndButton>:
cols:2
Label:
text: root.text
Button:
text: root.text

最新更新