0
我想刪除兩行之間未使用的空間。 這是我.kv文件:Kivy:使用kv設計
<MainLayout>:
text_input: text_input
logo100: logo100
rows: 3
orientation: 'horizontal'
GridLayout:
cols: 2
orientation: 'vertical'
row_force_default: True
row_default_height: 50
padding: 20
spacing: 10
Image:
id: logo100
source: 'logo100.png'
size_hint: .2, .1
texture: self.texture
size: self.texture_size
TextInput:
id: text_input
markup: True
font_size: 32
size_hint: 1.8, .1
multiline: False
on_text_validate: root.on_enter()
hint_text: 'Enter the url of the website and click enter'
而且我從列表類中添加一個列表:
Builder.load_string("""
#:import lv kivy.uix.listview
#:import la kivy.adapters.listadapter
#:import fa kivy.factory.Factory
<[email protected]>:
selected_color: [24.0, 1.0, 0.39, 0.6]
deselected_color: [1.0, 1.0, 1.0, 0.0]
font_size: 32
size: 100, 100
line_height: 1
#spacing: 100
<ListViewModal>:
list_view: list_view_id
padding: 100
spacing: 30
ListView:
id: list_view_id
size_hint: .98,.98
adapter:
la.ListAdapter(data = "",
cls=fa.ListItemButtonTitle)
""")
我想垂直追加列表沒有留下自由的空間。 可能是圖片可以解釋更
我在想,
row_force_default: True
row_default_height: 50
將是很好的做到這一點,但沒有,我不知道如何解決這個問題。