I\'m trying to write an application that runs kivy at full screen. But these are my issues:
1) When I run the command:
#Config.set(\'graphics\', \'fullsc
Try
from kivy.core.window import Window
Window.fullscreen = True
Do this before you App.run()
method, and it should switch to fullscreen mode.
Cheers
I just want to complement:
from kivy.core.window import Window
Window.size = (1366, 768)
Window.fullscreen = True
I managed to do it as follows:
from kivy.core.window import Window
Window.maximize()
Answering lately For those who are still struggling to figure out how to have the true fullscreen. I have managed to get the rid of those black strip by adding Config.set('graphics','window_state'_'maximized'
just after the fullscreen call. the whole code looks like
from kivy.config import Config
# ...
if __name__ == "__main__":
Config.set('graphics', 'fullscreen', 'auto')
Config.set('graphics', 'window_state', 'maximized')
Config.write()
YourApp().run()
this works for me:
Config.set('graphics', 'fullscreen', 'auto')
Had a similar problem. Using the 'auto' option got rid of the bands for me.
Window.fullscreen = 'auto'
Quote from Kivy Configuration Object documentation: "If set to auto, your current display’s resolution will be used instead. This is most likely what you want."