我已在应用程序中使用kivy.garden.filebrowser成功添加了文件浏览器,并且尝试使用
更改窗口的背景色。Window.clearcolor = (1,1,1,1)
它成功地将背景色更改为白色,但是某些文件浏览器标签是透明的,这些颜色相对于背景色没有更改。
在更改窗口的背景颜色之前,该应用看起来像这样
更改窗口的背景颜色后,应用程序如下所示
我希望应用程序背景颜色为白色,所有标签和文本颜色为黑色,
代码-
class FileBrowserApp(App):
def build(self):
try:
if(self.out):
self.root.remove_widget(self.out)
except:
pass
self.root = FloatLayout()
self.bn = BoxLayout(orientation="horizontal")
button1 = Button(text='Select Files', pos_hint={'x':0, 'y': 0}, size_hint=(1, 0.1))
button1.bind(on_press=self.do_select)
self.bn.add_widget(button1)
self.out = BoxLayout(orientation="vertical")
self.root.add_widget(self.out)
self.root.add_widget(self.bn)
return self.root
如何更改此颜色,谢谢