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を表示するために何をする必要があるかということです。
ありがとう