Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove/disable On-Keyboard Textbox when Using UIInput NGUI?

Tags:

unity3d

ngui

I am using NGUI's UIInput class to accept text input from user. when i start typing in text box in mobile devices. a key board appears and it has an another textbox within it self, with "OK"/"Done" button (Like a keyboard accessory view, if we're talking about iPhone).

Can i disable that text box appearing within keyboard ? Or its not even possible and i am shooting just blanks ?

From what i could gather by search for a while is, the appearance of keyboard is handled buy Unity's "TouchScreenKeyboard" class. but according to Unity Scripting reference there is nothing which could hide the textfield inside the keyboard.

Unity Scripting reference: TouchInputKeyboard

PS:- I should still be able to put input in textbox by directly typing into them, i just want an extra textbox within the key board to be removed.

TO be more clear i have attached images explaining this

This is the screen.

enter image description here

When i start typing in one of the textbox. a keyboard appears like the following. as you can see the text box just above the keyboard is not the original one.

enter image description here

like image 817
Pawan Joshi Avatar asked Nov 01 '22 16:11

Pawan Joshi


1 Answers

Did you try checking "Hide Input Check box" in Inspector view of that UIInput Textbox ?

like image 197
Dev_Dash Avatar answered Dec 21 '22 23:12

Dev_Dash