B4A Question About “IME.AddHeightChangedEvent” - Erel (first post)    Jan 11, 2022   (1 reaction) Correct way to handle this event in B4XPages: https://www.b4x.com/android/forum/threads/b4x-b4xpages-cross-platform-and-simple-framework-for-managing-multiple-pages.118901/post-745090 B4A Question IME event issues with 2 pages - walterf25 (first post)    Aug 27, 2024   (2 reactions) Take a look at the updated example attached, you were missing this part in the Main Activity
Sub Process_Globals
Public ActionBarHomeClicked As Boolean
End Sub
Sub Globals
Private ime As IME
End Sub
Sub Activity_Create(FirstTime As Boolean)
ime.Initialize("IME")
ime.AddHeightChange B4A Question KeyPress Event - William Lancee (first post)    Apr 22, 2021   (2 reactions) I took some time to experiment. It possible to have mastery over the soft keyboard and capture key presses for any page in B4XPages - even without an apparent target view! The IME has to be handled in Main Activity module. Here is my convoluted solution. There are likely much more elegant ways! B4A Question [Resolved] IME how can I intercept keyboard events - LucaMs (first post)    Apr 15, 2023   (1 reaction) Did you add this line to the Manifest file?
SetActivityAttribute(main, android:windowSoftInputMode, adjustResize|stateHidden)
And these to your project?
IME.Initialize("IME")
IME.AddHeightChangedEvent
IME.AddHandleActionEvent(YourEditTextHere) B4A Question [IME] HeightChanged in Fullscreen - Blueforcer    Sep 21, 2021   (1 reaction) Since IME Heightchange doesnt work in Fullscreen and even not with invisible Bars, i was searching for another way and found many workarounds for this:
https://stackoverflow.com/a/67588599
Found on
https://stackoverflow.com/questions/7417123/android-how-to-adjust-layout-in-full-screen-mode-when-soft B4A Tutorial Handle the soft keyboard with the IME library - Erel    Aug 27, 2024   (27 reactions) Android has very good support for custom input method editors (IMEs).
The downside for this powerful feature is that interacting with the soft keyboard can be sometimes quite complicated.
This library includes several utilities that will help you better handle the soft keyboard.
The attached examp B4A Question editext box in a panel - LucaMs (first post)    May 19, 2017   (1 reaction) IME library German IME.ShowKeyboard funktioniert nicht - mw71 (first post)    Oct 12, 2017   (1 reaction) um das Label zu aktivieren
lbl.RequestFocus
bei bedarf:
IME1.Initialize("IME1")
IME1.AddHandleActionEvent(lbl)
.......
IME1.ShowKeyboard(lbl)
ich hoffe es hilft etwas B4A Question How to keep the virtual keyboard closed - toby (first post)    May 25, 2023 Dim ime As IME ime.HideKeyboard B4A Library [B4X] [XUI] AS AutoComplete based on AS SelectionList - Alexander Stolte    Jan 03, 2025   (10 reactions) This is an AutoComplete view, which is compatible with B4XFloatTextField, AS_TextFieldAdvanced, EditText (B4A), TextField (B4i) and TextField (B4J) I spend a lot of time in creating views, like this and to create a high quality view cost a lot of time. If you want to support me and further views, t Page: 1   2   3   4   5   6   7   Powered by ColBERT |