在Kivy中引用动态创建的小部件的id

时间:2016-03-08 16:10:46

标签: python properties popup kivy

我无法通过绑定到按钮的方法中的 root.ids.created_in_kv.created_in_py 访问动态创建的子项。当我检查 root.ids.created_in_kv.ids 字典时它是空的,但 root.ids.created_in_kv.children

中有子节点

我想要实现的是创建一个充当多重选择器的弹出窗口。它将接受可能的选择并动态创建标签 - 复选框对并将其添加到弹出内容,并在'应用'按钮它将仅返回所选列表(str())。

我无法使用kv中的多个小部件来构建弹出式窗口,但以下作品(建议使其更好并且非常受欢迎):

kv代码:

<SelectorPopup>:
    title: 'empty'
    BoxLayout:
        id: inside
        orientation: 'vertical'
        BoxLayout:
            id: options
        BoxLayout:
            id: buttons
            orientation: 'vertical'
            Button:
                text: 'Apply'
                on_release: root.return_selected()
            Button:
                text: 'Cancel'
                on_release: root.dismiss()

<LabeledCheckbox@BoxLayout>:
    id: entity
    CheckBox:
        id: choice
    Label:
        text: root.id

python代码我创建了标签复选框对(打包在GridLayout中)并将其放入选项BoxLayout

class SelectorPopup(Popup):
    def return_selected(self):
        selected=[]
        a = self.ids.inside.options.choices.ids # dict is empty
        for item in a.keys():
             selected.append(item) if a[item].ids.choice.value #add if checkbox checked
        return selected

class MultiselectForm(BoxLayout):
    data = ListProperty([])
    def __init__(self, **kwargs):
        super(MultiselectForm, self).__init__(**kwargs)
        self.prompt = SelectorPopup()

    def apply_data(self):
        # write data to self.data
        pass

    def create_popup(self):
        try:
            # some code to check if choices are already created
            check = self.prompt.ids.inside.options.choices.id
        except AttributeError:
            possible = ['choice1','choice2','choice3'] #query db for possible instances
            choices = GridLayout(id='choices',cols=2)
            for entity in possible:
                choice = Factory.LabeledCheckbox(id=entity)
                choices.add_widget(choice)
            self.prompt.ids.options.add_widget(choices)
        self.prompt.open()

问题:

1)如何使 return_selected 方法有效?

2)有没有办法更好地构建弹出窗口?我无法将小部件树添加到 content ObjectProperty中,如:

<MyPopup>:
    content:
        BoxLayout:
            Label:
                text: 'aaa'
            Label:
                text: 'bbb'

1 个答案:

答案 0 :(得分:4)

看起来你对ids的运作方式有点混淆。他们在文档中谈到了一点:https://kivy.org/docs/api-kivy.lang.html

基本上,它们只是.kv中的特殊标记,可以让您引用已定义的小部件。它们被收集并放置在它们所定义的规则的根小部件上的ids字典中。这意味着它们不像您引用它们那样嵌套,它们都在根小部件(SelectorPopupLabeledCheckbox

而不是(来自SelectorPopup内):

self.ids.inside.options.choices

你会:

self.ids.choices

这也意味着动态添加的小部件不会出现在ids字典中,但实际上并不需要。由于您是在代码中创建它们,因此您可以自己保存对它们的引用(这对.kv更难)。

尽管如此,使用ListView显示项目列表可能会容易得多。