If you are in landscape mode and click inside a "native.newTextField", a input box will cover up the rest of the space above the keyboard.
In android you can use:
<EditText
android:id="@id/edittext"
android:imeOptions="flagNoExtractUi"
/>
to disable the extended input box. I tried to add "imeOptions = flagNoExtractUi" inside the build-settings but this doesn't work (probably because you have to target the edittext field). Is there a way to hide this with Corona SDK (currently I only need it to work on android phones)?