Put this at the very top of your main file.
from kivy.config import Config
Config.set('graphics', 'window_state', 'maximized')
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/a3b893b4-f1ad-401b-bf0b-2fa68af71d20%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e1203df.1c69fb81.629ef.ac03SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
At the very top of your main file
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSvB22PaMg4WkhO-7TcyMELeG_jsgOnoTOZu29QN%2B7nKw%40mail.gmail.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e12bfaf.1c69fb81.16021.359dSMTPIN_ADDED_MISSING%40gmr-mx.google.com.
Config.set('graphics', 'window_state', 'maximized')
Config.write()Show your code. It must be on the top of the first file. The Config.write() is not necessary.
What platform are you on? (FWIW: I can’t see
From: Electronic Part
Sent: Sunday, January 5, 2020 10:29 PM
To: kivy-...@googlegroups.com
Subject: Re: [kivy-users] How to make app full screen with border
I used these commands
Config.set('graphics', 'window_state', 'maximized')
Config.write()
On Mon, Jan 6, 2020 at 8:51 AM Electronic Part <hsiel...@gmail.com> wrote:
This is how my app looks. As you see it is full screen but on button left and also i don't have any windows border
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shRScrmsD-F7v%3D79ULE7Mnp73AHRPjQsZvUbeY63%2B35%3DSQ%40mail.gmail.com.
For some reason i can't take screen shot. How can i get be to my last configuration. This is awful if __name__ == "__main__":
# Config.set('graphics', 'fullscreen', 'auto')
Config.set('graphics', 'window_state', 'maximized')
# Config.write()
my_app = MyMainApp()
my_app.run()
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e12c67d.1c69fb81.ee743.2781SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
On Jan 5, 2020, at 10:43 PM, Electronic Part <hsiel...@gmail.com> wrote:
For some reason i can't take screen shot. How can i get be to my last configuration. This is awfulif __name__ == "__main__":
# Config.set('graphics', 'fullscreen', 'auto')
Config.set('graphics', 'window_state', 'maximized')
# Config.write()
my_app = MyMainApp()
my_app.run()
On Mon, Jan 6, 2020 at 9:02 AM Elliot Garbus <elli...@cox.net> wrote:
Show your code. It must be on the top of the first file. The Config.write() is not necessary.
What platform are you on? (FWIW: I can’t see
From: Electronic Part
Sent: Sunday, January 5, 2020 10:29 PM
To: kivy-...@googlegroups.com
Subject: Re: [kivy-users] How to make app full screen with border
I used these commands
Config.set('graphics', 'window_state', 'maximized')
Config.write()
On Mon, Jan 6, 2020 at 8:51 AM Electronic Part <hsiel...@gmail.com> wrote:
This is how my app looks. As you see it is full screen but on button left and also i don't have any windows border
<ADFF418681D448D0BF0BBF7AC826E073.png>
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSq-O%3DTYCSvQwMx2FChRME3HfgdYLDhmvLYc-pCX8ME9Q%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/67931F58-B4CC-4976-B408-087B61E56B54%40cox.net.
To go back to to the original config:
Config.set('graphics', 'window_state', 'visible')
Config.write()
Or delete the config.ini file.
https://kivy.org/doc/stable/guide/config.html#configure-kivy
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shT_VGUeRoRN5XgWbPFzFgaQi%3Dv0FUd4u_YaKbjsj166Jw%40mail.gmail.com.
from kivy.config import Config
Config.set('graphics', 'window_state', 'maximized')
from kivy.app import App
from kivy.lang import Builder
from kivy.core.window import Window, WindowBase
kv = """
BoxLayout:
orientation: 'vertical'
Label:
text:'Change Window Size Test'
Button:
text: 'Change Size'
on_release: app.change_window_size()
"""
class FullScreenApp(App):
fullsize = 0
def build(self):
return Builder.load_string(kv)
def on_start(self):
self.fullsize = Window.size
def change_window_size(self):
if self.fullsize == Window.size:
Window.size = (600, 600)
else:
Window.size = self.fullsize
FullScreenApp().run()
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/a3b893b4-f1ad-401b-bf0b-2fa68af71d20%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e1203df.1c69fb81.629ef.ac03SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSvB22PaMg4WkhO-7TcyMELeG_jsgOnoTOZu29QN%2B7nKw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e12bfaf.1c69fb81.16021.359dSMTPIN_ADDED_MISSING%40gmr-mx.google.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shRScrmsD-F7v%3D79ULE7Mnp73AHRPjQsZvUbeY63%2B35%3DSQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e12c67d.1c69fb81.ee743.2781SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSq-O%3DTYCSvQwMx2FChRME3HfgdYLDhmvLYc-pCX8ME9Q%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/67931F58-B4CC-4976-B408-087B61E56B54%40cox.net.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/a3b893b4-f1ad-401b-bf0b-2fa68af71d20%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e1203df.1c69fb81.629ef.ac03SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSvB22PaMg4WkhO-7TcyMELeG_jsgOnoTOZu29QN%2B7nKw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e12bfaf.1c69fb81.16021.359dSMTPIN_ADDED_MISSING%40gmr-mx.google.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shRScrmsD-F7v%3D79ULE7Mnp73AHRPjQsZvUbeY63%2B35%3DSQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e12c67d.1c69fb81.ee743.2781SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSq-O%3DTYCSvQwMx2FChRME3HfgdYLDhmvLYc-pCX8ME9Q%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/67931F58-B4CC-4976-B408-087B61E56B54%40cox.net.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shT_VGUeRoRN5XgWbPFzFgaQi%3Dv0FUd4u_YaKbjsj166Jw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/0f882e0e-0e03-46a8-aae0-5008b6a8a8bf%40googlegroups.com.

To position your full-size window:
Window.left = 0
Window.top = 23
From: Electronic Part
Sent: Monday, January 6, 2020 10:38 PM
To: kivy-...@googlegroups.com
Subject: Re: [kivy-users] How to make app full screen with border
Here is the screenshot

To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shQxgGMZ-uP%2BufLK2_RypCNT8tLcZk1mJk3r0xSJ7Nw%3D6w%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e146f8e.1c69fb81.a1279.b850SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
Could you tell me how uncover lower band without resizing ?
I’m not sure that I understand your question. On Windows10 the task bar, has a number of settings. If the task bar is set to visible, when I go full screen, the taskbar is not covered.
Kivy reports the task bar as 40pixels high. If you want to uncover the bottom of the screen, reduce the height of the window.
I wrote a tool to explore window sizes, and to save and restore the size of the kivy window on exit and start. This might help. It provides an interactive view of the window size and position.
From: Electronic Part
Sent: Wednesday, January 8, 2020 12:01 AM
To: Kivy users support
Subject: Re: [kivy-users] How to make app full screen with border
I have one more problem regarding this question. I don't want to cover lower band. this is what i mean. In one of images i have took, kivy cover lower band and in the other one not because i resize the window manually. Could you tell me how uncover lower band without resizing ?
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/3fad58cc-fe9c-4a47-bf9d-18f7c6ce86cf%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e162e31.1c69fb81.a0c83.43d3SMTPIN_ADDED_MISSING%40gmr-mx.google.com.
Window.size = (1366, 768)
Just want windows size adapt itself with any screen size
Best Regards
I would suggest the following:
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/CAGb7shSnVLoXu5FpUaLQVrCRw1DMRECi8%2B9ikSdYMDBTgu9Ctg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5e4a9505.1c69fb81.1b53f.03e0SMTPIN_ADDED_MISSING%40gmr-mx.google.com.