I am using IME exclusively. On occasion, someone swipes over an edittext and it causes the built-in keyboard to show.
Of course, I'm expecting IME control and wish to dismiss the built-in android keyboard if/when it appears.
Is there a way to detect the appearance of the built-in android keyboard and subsequently hide it?
Thanks,
Rusty
B4XPages is a library that serves two purposes: 1. Make it simple to develop B4A apps by solving almost all of the challenges involved with Android complex activities life cycle. B4XPages makes B4A behave more similar to B4J and B4i where the new "B4XPage" element is a regular object that is...
Hi All, In B4A "HideKeyboard" is handled as below. Private Ph As Phone Private Display1 As EditText 'In Designer --- Input Type Decimal numbers Sub Display1_EnterPressed dummytext.RequestFocus Ph.HideKeyboard(Activity) End Sub In B4XPages "Activity" of course is not valid...