Anitha
Anitha

Reputation: 1

How to show the Virtual Keyboard when text input is focused on Kivy Python

I want to show the virtual Keyboard when the text input is focused on the Kivy UI on the 7" touch screen of the Raspberry pi 3b.

Upvotes: 0

Views: 3178

Answers (1)

Koxo
Koxo

Reputation: 517

from kivy.config import Config
Config.set('kivy', 'keyboard_mode', 'systemandmulti')

Read more in Kivy documentation.

Upvotes: 1

Related Questions