【问题标题】:Kivy ActionDropDown does not openKivy ActionDropDown 打不开
【发布时间】:2017-03-12 20:57:56
【问题描述】:

在下面的 kivy gui 中,当我按下“笔”按钮时,应该会出现 ActionDropDown。我没有看到它打开。但是“笔”按钮的行为就像是用它打开了一个DropDown(例如,你不能在第一次尝试时按下它)。怎么了?

from kivy.uix.boxlayout import BoxLayout
from kivy.uix.actionbar import ActionDropDown
from kivy.app import App
from kivy.lang import Builder
from kivy.uix.screenmanager import Screen

Builder.load_string("""
<NoteScreen>:
    BoxLayout:
        orientation: 'vertical'

        NoteScreenMenu:

        Label:
            text: 'i am a label'

<NoteScreenMenu>:
    orientation: 'horizontal'
    size_hint_y: None
    height: 48

    ActionBar:
        pos_hint: dict(top=1)

        ActionView:
            use_separator: True

            ActionPrevious:
                title: 'Drawing Screen'
                with_previous: False

            ActionOverflow:

            ActionButton:
                id: pen_button
                text: 'Pen'
                on_release: root.pen_drop_down.open(self)

            ActionButton:
                text: 'Eraser'

<PenDropDown>:
    Button:
        text: 'Close this'
    Button:
        text: 'btn1'
""")


class NoteScreen(Screen):
    pass


class NoteScreenMenu(BoxLayout):
    def __init__(self, **kwargs):
        super(NoteScreenMenu, self).__init__(**kwargs)
        self.pen_drop_down = PenDropDown()


class PenDropDown(ActionDropDown):
    pass


class TheApp(App):
    def build(self):
        return NoteScreen(name='note')


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

【问题讨论】:

    标签: kivy kivy-language


    【解决方案1】:

    问题出在这里:

    <PenDropDown>:
        Button:
            text: 'Close this'
        Button:
            text: 'btn1'
    

    我需要在下拉菜单中为按钮添加高度信息:

    <PenDropDown>:
        Button:
            text: 'Close this'
            height: 48
            size_hint_y : None
    
        Button:
            text: 'btn1'
            height: 48
            size_hint_y : None
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-10-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-03-27
      相关资源
      最近更新 更多