如何在Kivy python中最大化滚动条?

时间:2017-07-28 11:23:30

标签: python user-interface scrollview kivy

我在kivy使用multiTab。如何放大滚动条,以便可以通过鼠标移动(向上)滚动条。我正在使用BoxLayout和RecycleView。下面的代码使用的是gridLayout,但不是BoxLayout:

layout.bind(minimum_height=layout.setter('height'))

1 个答案:

答案 0 :(得分:1)

enter image description here 下面是一个如何扩展ScrollView以获得可拖动滑块的示例。

from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.lang import Builder
from kivy.uix.label import Label

Builder.load_string("""
<ScrollSlider>:
    ScrollView:
        id: scrlvw
        bar_width: 0
        GridLayout:
            id: grid
            size_hint_y:None
            cols:1
            height: self.minimum_height
            scroll_y: slider.value
            on_touch_move: slider.value = self.scroll_y
    Slider:
        size_hint_x: None
        width: root.width*0.2
        id: slider
        min: 0
        max: 1
        orientation: 'vertical'
        value: scrlvw.scroll_y
        on_value: scrlvw.scroll_y = self.value

""")


class ScrollSlider(BoxLayout):

    def custom_add(self, widget):
        self.ids.grid.add_widget(widget)

class MyApp(App):


    def build(self):
        scrollslider = ScrollSlider()
        for i in range(1, 100):
            scrollslider.custom_add(Label(text=str(i), height=100, size_hint_y=None))
        return scrollslider

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

您需要使用custom_addScrollSlider中添加小部件,或者将其添加到kivy中的GridLayout

我从@Edvardas Dlugauskas提供的链接中获得了灵感。

您提供的代码不适用于BoxLayout,因为BoxLayout只占用其父代的大小。为了能够滚动,您需要将{sth}添加到大于ScrollView本身的ScrollView