颜色不影响Kivy Bubble背景

时间:2016-06-10 12:29:52

标签: python python-3.x kivy

-jar窗口小部件具有Bubble属性,表示背景的RGBA颜色。它还具有background_color属性,这是不言自明的。但是,更改background_image不会影响气泡的外观,例如,与background_color不同,更改它会对Button应用色调。是什么让background_image的属性表现得与众不同?

Kivy v1.9.2-dev0

1 个答案:

答案 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透明部分。