B4i Tutorial CalcRelativeKeyboardHeight Example - Erel    May 26, 2021   (10 reactions) -keyboard-handling.131078/ A new method was added to all views named CalcRelativeKeyboardHeight. With this method you can calculate the keyboard's top line relatively to the current view. This is useful with long views that shouldn't be hidden by the keyboard. For example in this project there is a TableView and a CustomListView. When the keyboard appears they should be both adjusted so the user can still see all of the items. 41977 With the keyboard (the keyboard is not included in... B4A Library [B4X] SD CustomKeyboard - Star-Dust    Mar 26, 2024   (42 reactions) .
Use: SD_Keyboard1.SpecialKeyFont = xui.CreateMaterialIcons (16)
SD_CustomKeyboard
Author: Star-Dust....
IsInitialized As Boolean
Verifica se l'oggetto sia stato inizializzato.
KeyBoard As List
SD_Keyboard... B4A Library [B4X] SD CustomKeyboard (new version) - Star-Dust    Jan 1, 2025   (16 reactions) The CustomKeyboard library has made a leap in quality to be able to replace the native Android/iOs keyboard and also for the Desktop version.
Further developments are planned such as the possibility... B4i Code Snippet Keyboard will hide notification - Erel    Jan 18, 2021   (6 reactions) The KeyboardStatePage event is raised before the keyboard becomes visible and after the keyboard is hidden. There are cases where you want to do something right before the keyboard is closed. For... B4IViewController (KeyboardWillHide) @end @implementation B4IViewController (KeyboardWillHide) - (void) addWillHide { addObserver:self selector:@selector(keyboardDidHide:) name...) #End If The B4XPage_KeyboardStateChanged will be raised twice with height = 0.... B4i Tutorial [B4X] [B4XPages] CustomListView + Keyboard handling - Erel    May 26, 2021   (9 reactions) 113999 This is a B4A + B4i project that shows a possible method for handling the keyboard visibility changes. Resizing the CLV will cause the list to lose the scroll position. Instead of resizing the list, we add a stub item as the last item, with the same size of the keyboard. This way the user... indicator becomes less useful when the keyboard appears. You also need to be aware that the last item in the CLV can be a stub item. See the code. It is quite simple. Note that handling the keyboard in... B4i Tutorial Animate textfield/panel with the iOS keyboard - Alexander Stolte    Apr 15, 2025   (4 reactions) This post presents an implementation of animations that animate alongside the iOS keyboard animation. Following the method in this post will allow your views to animate smoothly when the iOS keyboard... the UIKeyboardAnimationDurationUserInfoKey when the keyboard opens or closes: https://www.b4x.com/android/forum/threads/get... B4IViewController (Keyboard2) @end @implementation B4IViewController (Keyboard2) - (void) addWillHide { addObserver:self selector:@selector(keyboardDidHide:) name:UIKeyboardWillHideNotification... B4i Question problem hide keyboard - fifiddu70    Nov 22, 2014 hi, I have several texview on my program , some are located in the upper delloo screen while others are located at the bottom. My problem comes when I write such a TextView up and then I would write in a TextView down, I can not see it because of the keyboard visible , how do I prevent the keyboard hide me the texview located under the keyboard not allowing me to write to them ?... B4i Question [B4XPage] Hide keyboard not working in Disappear event - Alexander Stolte    Oct 25, 2021 The code is executed, but the keyboard remains open, why? Private Sub B4XPage_Disappear B4XPages.GetNativeParent(Me).ResignFocus End Sub... B4i Question Keyboard will show notification - Alexander Stolte    Apr 3, 2025 With this code we can trigger the KeyboardStateChanged event directly as soon as the keyboard close.
https://www.b4x.com/android/forum/threads/keyboard-will-hide-notification.126640/#content
I need the same when the keyboard is opened, I found the following in the apple documentation:
https... (KeyboardNotifications)
@end
@implementation B4IViewController (KeyboardNotifications)
- (void) addWillHide... B4i Question B4XFloatTextField1 - Closing the keyboard (Solved) - f0raster0    Mar 18, 2025 Hi Team,
I have a B4XFloatTextField1 where users can enter text. It displays an Accept option, which works as expected.
However, if the user type something and then delete it (B4XFloatTextField1 empty), the keyboard remains open.
How can I ensure it closes in this case?
162749162750... Page: 1   2   3   4   5   6   7   |