Cameron McBride
Cameron McBride

Reputation: 6799

How to specify a reverse landscape layout in android?

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

Answers (1)

Ridcully
Ridcully

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

Related Questions