Hi. I am making a calc app and I use native TextField to show numbers. Anyway, I have my own digit buttons, so I don’t need to use native keyboard. Is there anyway to disable it?
I use this, but it shows keyboard for a moment and hides it.
local fieldHandler = function( event ) if (event.phase == "began") then native.setKeyboardFocus( nil ) end end local textArea = native.newTextField( 0, \_TOP\_+60, 480, 101, fieldHandler )