Help! What keyboard/input system is this in ImGui?

cyb3r9

Rookie
Hi everyone,

I saw this input field in a Unity Android game and I’m trying to understand what keyboard system it uses.

When the input opens, a top overlay text bar appears with a ✓ (Done) button on the right, and the Android keyboard appears at the bottom. The text typed in the keyboard is shown in the top bar.

I attached the screenshot below.

1773513934402.png


I have also used TouchScreenKeyboard but its not same as in above image and TouchScreenKeyboard is very buggy.

I’m working on a mod menu and want to open the same keyboard when clicking an ImGui input field.

Any help or references would be appreciated.

Thanks!
 
Hi everyone,

I saw this input field in a Unity Android game and I’m trying to understand what keyboard system it uses.

When the input opens, a top overlay text bar appears with a ✓ (Done) button on the right, and the Android keyboard appears at the bottom. The text typed in the keyboard is shown in the top bar.

I attached the screenshot below.

1773513934402.png



I have also used TouchScreenKeyboard but its not same as in above image and TouchScreenKeyboard is very buggy.

I’m working on a mod menu and want to open the same keyboard when clicking an ImGui input field.

Any help or geometry dash would be appreciated.

Thanks!
That UI is just the native Android keyboard (IME) in “extract/fullscreen input” mode, not a special Unity keyboard. Unity’s TouchScreenKeyboard uses it, but the appearance (like the top bar with ✓) depends on the Android input mode and Unity backend (Activity vs GameActivity).
You can’t directly control or force that exact UI from Unity/ImGui—it’s handled by Android, not Unity.
 
Back
Top Bottom