Reputation: 6799
My application supports both landscape and reverse landscape. When the user rotates to reverse landscape Android shows my same layout. I would like to provide a reverse landscape layout to be used in reverse landscape orientation. Is this possible?
Upvotes: 2
Views: 475
Reputation: 23655
It does not seem like this is possible.
The resource qualifiers only distinguish between port(trait) and land(scape) and also if you'd handle configuration changes programmatically, Configuration.ORIENATION
only can be Configuration.PORTRAIT
or Configuration.LANDSCAPE
. No 'reverse landscape' there...
Upvotes: 1