D Deleted member 30048 Guest Nov 14, 2015 #1 Hello, I have 1 button and 1 edittext. I want to disable that you can click on an EditText, instead I want that the keyboard appears (enable editext) when you press the button. It is possible to do this? Thank you
Hello, I have 1 button and 1 edittext. I want to disable that you can click on an EditText, instead I want that the keyboard appears (enable editext) when you press the button. It is possible to do this? Thank you
mangojack Expert Licensed User Longtime User Nov 14, 2015 #2 with the IME library you could try the following .. B4X: Sub Globals Private ime1 As IME End Sub Sub Button1_Click EditText1.RequestFocus ime1.ShowKeyboard(EditText1) End Sub Upvote 0
with the IME library you could try the following .. B4X: Sub Globals Private ime1 As IME End Sub Sub Button1_Click EditText1.RequestFocus ime1.ShowKeyboard(EditText1) End Sub