如何在scrollview kivy中添加carosel

时间:2016-09-19 10:17:52

标签: scrollview carousel kivy

我尝试编写一些程序,我需要在scrollview中使用caruosel来制作在上下左右页面左右滑动的滑块 不像这张图片那样复杂的程序

enter image description here

我尝试这个,但旋转木马没有工作,并试图通过两个scrollview滚动视图,但这架飞机也没有工作 这是我的.kv代码

<page1>:
    ScrollView:
        size_hint:1,1
        GridLayout:
            cols:1
            size_hint_y:None
            height: self.minimum_height
            Carousel:
                size_hint_y:None
                Button:
                    text: 'Slide one'
                Button:
                    text: 'Slide two'

试试这个:

<page1>:
    ScrollView:
        FloatLayout:
            size_hint_y:1.5
            ScrollView:
                FloatLayout:
                    size_hint_x:1.5

怎么能像画面一样? 谢谢你的每一个答案

1 个答案:

答案 0 :(得分:0)

我通过此代码执行此操作,但滑块很难移动:)

 <page1>:
        ScrollView:
            size_hint:1,1
            GridLayout:
                cols:1
                spacing:5
                size_hint_y:None
                height: self.minimum_height
                FloatLayout:
                    size_hint_y:None
                    height:200
                    Carousel:
                        size_hint_y:None
                        loop:True
                        direction:'right'
                        Button:
                            text: 'Slide one'
                        Button:
                            text: 'Slide two'
                        Button:
                            text: 'Slide three

'