-jar
窗口小部件具有Bubble
属性,表示背景的RGBA颜色。它还具有background_color
属性,这是不言自明的。但是,更改background_image
不会影响气泡的外观,例如,与background_color
不同,更改它会对Button
应用色调。是什么让background_image
的属性表现得与众不同?
Kivy v1.9.2-dev0
答案 0 :(得分:0)
这个有点棘手!这与着色相同,但是当你设置它时它只能 :
background_image = <something> # (1) or
background_image = '' # (2)
# then it'll tint the image(1) or the bubble itself(2)
background_color = (1, 0, 0, 0.5)
它也适用于arrow_image
,但与第一张图片一样,您也需要先设置它:
arrow_image = ''
background_color = (1, 0, 0, 0.5)
然而,这个只看到Rectangle
填充Color
,所以最好的是.png
透明部分。