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个按钮列表的示例的代码。
如果有人能帮助我,请提前感谢。