0

Is posible make a option to change a input field with this button in mobile keyboard? Keyboard in my smartphone I dont know how to make something like that in my application. I add to update this

 void Update()
    {
        if (emailInput.isSelected)
        {
            if (nextInput != null && Input.GetKeyDown(KeyCode.Tab))
            {
                UICamera.selectedObject = nextInput;
            }
        }
    }

With Public Game Object to each Input.

StillDark
  • 3
  • 2
  • If you use InputField component then the keyboard is opening by default when you tap the text area – Everts Feb 07 '19 at 09:56
  • @Everts I know but i need change type of this default Keyboard that have a option to change inputs – StillDark Feb 07 '19 at 13:49
  • I'm not sure I understand what you need but have you tried to look into the touch keyboard class? There are some parameters to pass so you can control it. It is limited compared to native touch keyboard but it could be a start. Maybe define what is the type you are after. – Everts Feb 08 '19 at 08:13

0 Answers0