I learnt that I could disable full-screen editing for an text edit view with:
Can I achieve the same effect somehow for an InputDialog from the Dialogs library (v2.8)? When the user is presented with a dialog for entering a number, and s/he clicks into the text edit line, the editor opens full-screen, which I would like to avoid. I tried using the dialog as a target for the reflector, but it does not have the method required by the code above ("setImeOptions").
Thank you.
Regards,
B4X:
Dim r As Reflector
r.Target = e_usercode
r.RunMethod2("setImeOptions", 0x10000000, "java.lang.int")
Can I achieve the same effect somehow for an InputDialog from the Dialogs library (v2.8)? When the user is presented with a dialog for entering a number, and s/he clicks into the text edit line, the editor opens full-screen, which I would like to avoid. I tried using the dialog as a target for the reflector, but it does not have the method required by the code above ("setImeOptions").
Thank you.
Regards,