Android Question Change Orientation upside down

Matt S.

Member
Licensed User
Hi
My App runs only in landscape mode. But I would like to change the screen by 180 degrees when the user rotates his tablet or mobile upside down.
 
Last edited:

Matt S.

Member
Licensed User
Hi
My App runs only in landscape mode. But I would like to change the screen by 180 degrees when the user rotates his tablet or mobile upside down.
I got it!
There is a simple way:
B4X:
#Region  Project Attributes
    #SupportedOrientations: sensorLandscape

All Available values:
behind=3, fullSensor=10, fullUser=13, landscape=0, locked=14, nosensor=5, portrait=1, reverseLandscape=8, reversePortrait=9, sensor=4, sensorLandscape=6, sensorPortrait=7, unspecified=4294967295, user=2, userLandscape=11, userPortrait=12
 
Upvote 0
Top