native.newTextField - hide extendedui in landscape mode

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"<br> android:imeOptions="flagNoExtractUi"<br> /&gt;<br>

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 (currently I only need it to work on android phones). [import]uid: 128747 topic_id: 33178 reply_id: 333178[/import]

Hi,
I also need to implement this,
Please let me know if u found any way to implement this in corona

Thanks,

Hi @go4, @contact130,

Currently this isn’t directly possible via the SDK and it’s not on our roadmap for the near future. However, as Enterprise users, you may do this yourself by creating the Java text field (Android “EditText” Java class).

Hope this helps,

Brent

Hi,
I also need to implement this,
Please let me know if u found any way to implement this in corona

Thanks,

Hi @go4, @contact130,

Currently this isn’t directly possible via the SDK and it’s not on our roadmap for the near future. However, as Enterprise users, you may do this yourself by creating the Java text field (Android “EditText” Java class).

Hope this helps,

Brent