我编写了一些代码来在 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 ???
谢谢