如何调整 KivyMD 手风琴的大小

How to resize KivyMD Accordion

问题:

我正在使用 KivyMD Accordion,它的高度占据了大部分 UI space 并且缩小了应该包含在每个手风琴项中的其他小部件,如下图所示。

如何fix/set 手风琴的高度占用较小的space?感谢任何输入!

代码片段:

     MDAccordionItem:
        title: "HOME" 
        icon: 'key'
        GridLayout: # Root Layout of the screen
            rows:4

            ActionBar:
                pos_hint: {'top':1}
                ActionView:
                    use_separator: True
                    ActionPrevious:
                        title: 'Employee Info' 
                        with_previous: False

#-----------------CODE HERE FOR 2ND ACCORDION ITEM-------------------

GridLayout:

前添加MDAccordionSubItem:

片段

 MDAccordionItem:
    title: "HOME" 
    icon: 'key'

    MDAccordionSubItem:
        GridLayout: # Root Layout of the screen
            rows:4

            ActionBar:
                pos_hint: {'top':1}
                ActionView:
                    use_separator: True
                    ActionPrevious:
                        title: 'Employee Info' #Nucleic Acid Extraction
                        with_previous: False

输出