B4i Question Associating a custom keyboard to B4XFloatTextField - jai (first post)    May 27, 2024   (1 reaction) Thanks Erel! It worked with-
Dim no As NativeObject = B4XFloatTextField1.TextField
no.SetField("inputView",NumKeypad) B4i Question [AsViewPager] Close keyboard with B4XPages - Alexander Stolte (first post)    May 19, 2022   (1 reaction) Or check if the keyboard is open in the TabClick event and close it. Then you can switch to the next tab with delay. B4i Question Show Keyboard - Erel (first post)    Jul 02, 2023 The keyboard never shows unless the currently focused view is a TextField or TextView. You can move the focus when the user clicks on the label. B4i Question Keyboard for numeric input with search-button - TheRealMatze (first post)    Nov 26, 2023 Ok, thank you Erel. B4i Question [SOLVED] Keyboard is overlapping a text field / Can Apple reject the App? / Scrolling possible? - Erel (first post)    Apr 08, 2021   (1 reaction) The text field shouldn't be hidden by the keyboard. This is a bad UX.
You can make the whole layout scrollable with ScrollView or you can use B4XDialog + InputTemplate to get the user input. Wish B4XFloatTextField, new keyboard type PHONE - Jmu5667    May 28, 2020   (1 reaction) Hi
Just wondering if it would be possible to have a new keyboard type PHONE to allow numbers and the PLUS (+) available for entering in phone numbers. The existing Numbers is great with the Show Accept Button to overcome the issue with iOS keypad.
Regards
John. B4i Question iOS soft keyboard character and BACKSPACE, ENTER detection - Erel (first post)    Sep 25, 2024   (1 reaction) This seems to work:
Private Sub TextView1_TextChanged (OldText As String, NewText As String)
If NewText = "~" Then Return
If NewText = "" Then
Log("backspace")
Else
Dim c As String = NewText.SubString(NewText.Length - 1)
Log($"new char: ${c}, codepoint: ${Asc(c)} 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 example, to start moving a view.
1. Add to Main module at the bottom:
#if OBJC
@end
@interface B4IView Other B4i v2.50 is released - Erel    Apr 11, 2016   (19 reactions) #MinVersion: Sets the minimum version. Default value is 7.0. #CustomBuildAction: Similar to B4J and B4A attribute. Currently the only step available is 1 (beginning of compilation). Notification.NotificationTag - A string that is tied to the notification and can be retrieved when the user clicks on B4i Question Delay hiding keyboard [SOLVE] - Semen Matusovskiy (first post)    Sep 23, 2021   (1 reaction) Alternative way - to use keyboardWillShow keyboardWillHide notifications Page: 1   2   3   4   5   6   7   Powered by ColBERT |