- Home /
Is It Possible to have touch screen keyboard stay active after finishing input? (Android)
Currently we need to the touch screen keyboard to respond like a chat app(whatsapp) kind of behaviour where the keyboard stays active even finishes input.
But currently the keyboard slides down after finishes input and pop back up again. which we dont want that to happen during a chat. we know that the cause is the keyboard.done where the keyboard will temporary become inactive.
We dont know any other method to script the keyboard to behave such a way.
-Just students, coding games for fun so go easy on the complicated words. XD
if (InputField.isFocused == false) { InputField.ActivateInputField(); }
if (keyboard.done)
{
matcher = EManager.UserInputText(InputField.text);
InputField.text = "";
keyboard.active = true;
}
Your answer
Follow this Question
Related Questions
How to set closeKeyboardOnOutsideTap? 0 Answers
TextField on Android clears the text when user tap outside the keyboard 1 Answer
Is it possible to check if the touchscreen keyboard has been closed? 0 Answers
TouchScreenKeyboard not working with GUI.TextArea (tested with Android tablet) 0 Answers
Unity TouchScreen Keyboard questions.. 0 Answers