I’m trying to use the native textfield on androind and for some reason the text is always cut off. I’ve tried lowering the size of the text and increasing the height of the text field and still does the same thing. It almost seems like the anchorY is set to .5 instead of 0. Here is an image of what it’s doing:
Here is the code that I’m using
usernameTextField = native.newTextField(150, 150, 300, 60) usernameTextField.text = "Dave" usernameTextField.anchorX = 0 usernameTextField.x = thumbnailBg.x + (thumbnailBg.width/2) + 10 usernameTextField.y = thumbnailBg.y + (usernameTextField.height/2) + 10 usernameTextField:addEventListener("userInput", textListener) sceneGroup:insert(usernameTextField)