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 に答える