Disabling full-screen editing for a dialog

ukimiku

Active Member
Licensed User
Longtime User
I learnt that I could disable full-screen editing for an text edit view with:
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,
 

ukimiku

Active Member
Licensed User
Longtime User
Yes, right, thank you for setting me straight.

Regards,
 
Upvote 0
Top