Godot Version
Godot 4.4.1
Question
Hi,
I am developing a mobile App, and I encounter a couple of difficulties with the virtual keyboard:
- I have a SpinBox, that can only get digits, and would like to “force” OS to open digital keyboard, here is my code:
func _on_value_focus_entered() -> void:
DisplayServer.virtual_keyboard_show("", Rect2(0, 0, 0, 0), DisplayServer.KEYBOARD_TYPE_NUMBER)
What am I doing wrong? Is there a settings in the actual Android export section?
- I have a Form, one is a standard LineEdit and then my SpinBox, how can I get a “Next” button on the virtual keyboard to get to the next field
Nodes:
Thanks for your help!