Support¶
Activate other framework/toolkit inside our event loop
- kivy.support.install_gobject_iteration()¶
Import and install gobject context iteration inside our event loop. This is used as soon as gobject is used (like gstreamer)
- kivy.support.install_twisted_reactor(**kwargs)¶
Installs a threaded twisted reactor, which will schedule one reactor iteration before the next frame only when twisted needs to do some work.
any arguments or keyword arguments passed to this function will be passed on the the threadedselect reactors interleave function, these are the arguments one would usually pass to twisted’s reactor.startRunning
Unlike the default twisted reactor, the installed reactor will not handle any signals unnless you set the ‘installSignalHandlers’ keyword argument to 1 explicitly. This is done to allow kivy to handle teh signals as usual, unless you specifically want the twisted reactor to handle the signals (e.g. SIGINT).
- kivy.support.install_android()¶
Install hooks for android platform.
- Automaticly sleep when the device is paused
- Auto kill the application is the return key is hitted