【发布时间】:2018-05-18 15:43:27
【问题描述】:
我有一个 3 行的 kivy GridLayout,每行都嵌套了 BoxLayout。我需要用图像完全填充一行中的一个框。无论我在 kv 文件中进行何种调整(例如size: self.size、size_hint_x: 1 以及此堆栈溢出中概述的步骤Resizing an image to variable/fixed dimensions?),它都会保持图像的原始大小。
我所拥有的示例屏幕截图 - 我想放大紫色 foo 图像以填充整个红色矩形(纵横比对我来说并不重要):
一些示例代码:
<MyGridLayout>:
rows: 3
padding: 0
spacing: 0
BoxLayout:
orientation: "horizontal"
size_hint: 0.15, 0.2
Button:
text: 'FOO_BUTTON'
size_hint_x: 0.25
Label:
text: ''
BoxLayout:
orientation: "horizontal"
Image :
source: 'C:/my/path.png'
Label :
size_hint_x: 0.3
text: "foo"
BoxLayout:
orientation: "horizontal"
Label :
size_hint_x: 0.7
text: "foo"
Label :
size_hint_x: 0.3
text: "foo"
【问题讨论】: