NeoTechni Well-Known Member Licensed User Longtime User Jun 22, 2012 #1 I don't use any text boxes in my app, but I want to bring up the dialog cause thats how you support game controllers better
I don't use any text boxes in my app, but I want to bring up the dialog cause thats how you support game controllers better
NeoTechni Well-Known Member Licensed User Longtime User Jun 22, 2012 #2 Figured it out: B4X: Sub InputMethodSelector Dim Obj1 As Reflector Obj1.Target = Obj1.GetContext Obj1.Target = Obj1.RunMethod2("getSystemService", "input_method", "java.lang.String") Obj1.RunMethod("showInputMethodPicker") End Sub Last edited: Jun 22, 2012 Upvote 0
Figured it out: B4X: Sub InputMethodSelector Dim Obj1 As Reflector Obj1.Target = Obj1.GetContext Obj1.Target = Obj1.RunMethod2("getSystemService", "input_method", "java.lang.String") Obj1.RunMethod("showInputMethodPicker") End Sub