In a simple project with a simple input field
string stringToEdit = “”;
void OnGUI()
{
stringToEdit = GUI.TextField(new Rect(10, 10, 500, 300), stringToEdit, 25);
}
The keyboard of the application is in the Japanese mode and we have typed some characters. If touch on the back button on the bottom left of the device to hide the keyboard, the keyboard is hidden. However, if we try to touch on the input field again, no response and after a few seconds, the application is hung.
Please help. Thanks!