0
我有一個GridLayout,帶有一個按鈕和一個圖像顯示在按鈕內部。當我運行我的應用程序時,按鈕中的圖像有時會居中,有時卻不會。爲什麼?我相信它應該始終以中心爲中心。Kivy-Image只集中在運行時的一些時間
.kv文件:
MyLayout:
cols: 2
height: self.minimum_height
pos: root.pos
Button:
size_hint_y: None
height: self.parent.width/2
Image:
source: 'Images/employee/userprofile.png'
size: self.parent.size
center_x: self.parent.center_x
center_y: self.parent.center_y
下面的圖片是我期待每一個時間:
你想調整圖像大小嗎?它是否應該擴展並填充整個按鈕? – FJSevilla
我添加了我的意思。基本上在運行時,當我(我認爲)得到第一個結果時,我得到了這些結果中的任何一個。 – supreme