Alexander Stolte Expert Licensed User Longtime User Dec 13, 2020 #1 How to handle the keyboard height? The _KeyboardStateChanged Event is only firing on bottom or top, but not if i swipe.
How to handle the keyboard height? The _KeyboardStateChanged Event is only firing on bottom or top, but not if i swipe.
Erel B4X founder Staff member Licensed User Longtime User Dec 14, 2020 #2 You haven't provided all the information. Have you set the ScrollView keyboardDismissMode field? Upvote 0
Alexander Stolte Expert Licensed User Longtime User Dec 14, 2020 #3 Erel said: Have you set the ScrollView keyboardDismissMode field? Click to expand... Yes. B4X: Dim no As NativeObject = xclv_chat.sv no.SetField ("keyboardDismissMode",2) Upvote 0
Erel said: Have you set the ScrollView keyboardDismissMode field? Click to expand... Yes. B4X: Dim no As NativeObject = xclv_chat.sv no.SetField ("keyboardDismissMode",2)
Erel B4X founder Staff member Licensed User Longtime User Dec 14, 2020 #4 A simple solution will be to use the inputAccessoryView. It will move with the keyboard automatically. Upvote 0
A simple solution will be to use the inputAccessoryView. It will move with the keyboard automatically.
Alexander Stolte Expert Licensed User Longtime User Dec 14, 2020 #5 Erel said: use the inputAccessoryView Click to expand... Can this be used without an TextField too? Because this with the KeyboardStateChanged event looks not so good: Upvote 0
Erel said: use the inputAccessoryView Click to expand... Can this be used without an TextField too? Because this with the KeyboardStateChanged event looks not so good:
Erel B4X founder Staff member Licensed User Longtime User Dec 14, 2020 #6 Yes, you can put any view you like. Upvote 0