Hello, im converting my existing app to b4xpages, i found something that makes me frustating, so my app is adding transparent status bar on Main like this
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim jo As JavaObject
Dim window As JavaObject = jo.InitializeContext.RunMethod("getWindow", Null)
window.RunMethod("addFlags", Array(Bit.Or(0x00000200, 0x08000000)))
Activity.Height = Activity.Height + 24dip
Dim pm As B4XPagesManager
pm.Initialize(Activity)
End Sub
and i use some reference from this thread and this thread both recomendation is using ime height change event and keyboard height change event is not firing, but when id remove transparent status bar it is working fine, any help, thank you.
Hi, with targetSdkVersion = 35 IME_HeightChanged event does NOT fire. I have SetActivityAttribute(main, android:windowSoftInputMode, adjustResize|stateHidden) in the manifest and even an example taken from an old case works if the targetSdk is 34 but it does NOT if the targetSDK = 35. Any...