Is there way to "refresh" Activity.Width after HeightChanged?
I need it on orientation change.
With this code Activity width and height is always the same after orientation change...
I need it on orientation change.
With this code Activity width and height is always the same after orientation change...
B4X:
Sub IME1_HeightChanged(NewHeight As Int, OldHeight As Int)
ToastMessageShow("Width= " & Activity.Width & CRLF & _
"Height= " & Activity.Height, False)
End Sub