Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.