Kivy using Raspberry pi 3

Asked

Viewed 111 times

1

I’m using HDMI output from Raspberry Pi 3. Using a code Python that opens a window Kivy, this window fills the whole screen and overlap everything else(open windows, pointer mouse...). Apparently he(rasp) responds to commands as it is possible to turn off, but nothing can be done in the window. How can I correct by using it normally?

import kivy 
kivy.require('1.0.6') 
from kivy.app import App 
from kivy.uix.label import Label 
class MyApp(App): 
   def build(self):
      return Label(text='Hello world') 
if name == 'main':
   MyApp().run()
  • Apparently there are some people with the same Issue, but so far no solution has appeared :/

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.