Is it possible to GET the actual ScreenOrientation ?
I searched the forum, but all questions belongs to SET it...
P.S.: i know that its working this way, but think maybe there is a better way:
I searched the forum, but all questions belongs to SET it...
P.S.: i know that its working this way, but think maybe there is a better way:
B4X:
Dim Orientation As String
If Activity.Width > Activity.Height Then
Orientation = "Landscape"
Else
Orientation = "Portrait"
End If