Kivy ScrollView,无法滚动,滚动条未显示

时间:2017-12-29 12:16:27

标签: kivy-language

ScrollView:
size_hint_x:None
size_hint_y:None
background_color:[.2,.4,.4,1]
pos_hint:{'center_x':.97,'center_y':.55}
size_hint:.45,.5
GridLayout:
    id:selecteditem
    height: self.minimum_height
    bar_width:3
    cols:1
    padding:1
    spacing:3
    size_hint:.45, .5

这是.kv文件代码。

for i in range(100):
btn = Button(text=str(i), size=(250, 30),
             size_hint=(None, None))
self.othroot.ids.selecteditem.add_widget(btn)

这是我用作创建100个按钮列表的示例的代码。

如果有人能帮助我,请提前感谢。

This is the image regarding the issue

0 个答案:

没有答案