6

我编写了一些代码来在 Python/Kivy 中显示一些内容,看来我没有写好 ScrollView。

我在程序中尝试了一些变化,但程序不显示滚动条。

这是我的代码:

def build(self):
    root = BoxLayout(orientation='vertical')
    box = BoxLayout(orientation='vertical')     
    lists = rss_feed()      
    for lista in lists:
        temp = BoxLayout(orientation='vertical')
        for entry in lista:
            temp.add_widget(Label(text=entry))
        box.add_widget(temp)
    sv = ScrollView(size_hint=(True, True), size=(400, 400))
    root.add_widget(sv)
    sv.add_widget(box)      
    return root

我的问题是:我需要做什么来显示 scroolbar ???

谢谢

4

1 回答 1

5

我在https://groups.google.com/forum/?fromgroups=#!topic/kivy-users/AiaUnKp3XX4上找到了一个示例,该错误已得到纠正。

我忘了设置绑定方法

于 2012-09-04T20:19:36.720 回答