So I just tried following short clip and compiled apk:
1. it works if I have Samsung keyboard
without predictive text input (and word selection bar) on
2. if I turn Samsung keyboard on with predictive text input - nothing is displayed (and s$ is empty)
same code works on any other platform + Android if you just have 'right settings for Android keyboard'.
Code: Select all
t = GetVersion()
If t.platform = "Android"
ShowKeyboard()
EndIf
Locate(100, 200)
s$ = InKeyStr(#ALPHABETICAL, 8)
If t.platform = "Android"
HideKeyboard()
EndIf