Is there a technique to allow landscape only on large device?
I can set the manifest.xml file for the activity to rotate based on the sensor, eg android:screenOrientation = "sensor" but this does not provide the behavior I'd like.
For instanced I'd like to allow a user to go to Landscape mode in a tablet device, but not on smaller resolution device (because the UI would look awful).
From what I can tell, there is no way to respond dynamically (eg at run time) if an orientation is acceptable. Or is there?
Am I missing something? Thanks in advance!