Tell me more ×
User Experience Stack Exchange is a question and answer site for user experience researchers and experts. It's 100% free, no registration required.

Rotating a mobile device has unpredictable effects: Depending on OS and app rotating the device can have no effect, or it lays out the content to the new screen orientation, potentially showing a very different interface or different elements, or scrolling to a different part of the content.

From my personal experience, I find that I barely ever rotate the device to "access" the different viewport layout. However, on a daily basis I struggle with apps that react to the rotation change. Often this is caused by accidentially tilting the device, or sometimes I'd even just like to hang out on the couch but am forced to hold the device in ackward position to get the desired orientation.

What are the reasons for not allowing users to disable or lock the device rotation in the device OS or app settings? Does the gain from allowing responsive layouts outweigh the negative user experience of forced rotation change?


As a little background: Amongst other advantages from building a dedicated app instead of a mobile website, I find this control over viewport orientation particularly compelling. As far as I know there is no way to control the orientation change from a mobile website, however, some applications are simply designed for only one viewport layout. My question thus is merely to figure out what are the reasons for not offering this kind of setting.

share|improve this question

2 Answers

Just a quick thought - there is a number of situations, that might make the locking necessary:

  1. When the application uses some accelerometer mechanisms and pivoting it may result in interface to switch to another orientation (upside down or landscape<>portrait)

  2. When your application gives access to a lot of content, you may consider it as well. One can read the articles in bed for example, and just movements can rotate the view. You have this option in Pocket or Goodreader.

In the same time, you can still use it, especially in apps offering some screen consuming features, where content is crucial, by hiding some parts of the interface. Take Facebook app for iPad - depending on rotation it displays chat or not. Everything depends on the case.

share|improve this answer

For starters, I am a little puzzled as to why you say that some Mobile OS's dont offer the option to prevent rotation. To my knowledge Android has the option among the basic default settings to prevent rotation as shown below :

enter image description here

With regards why there is a need for supporting both the portrait and landscape view in mobiles, I recommend reading this excellent article Designing For Device Orientation: From Portrait To Landscape. To quote the article:

YouTube’s mobile application is a great example of device orientation design. Portrait mode offers a feature-rich interface for video discovery and the user’s account. Landscape mode provides an immersive experience with a full-screen video player and playback controls. When the video ends, the display switches back to portrait mode, prompting users to quickly tilt the device back and browse for additional videos.

The article also calls out what additional benefits are there when rotation is enabled such as:

EXTENDED VIEWS

This interface adjusts to the screen’s size, adding or subtracting layout components according to the dimensions of the chosen orientation. For example, IMDb for the iPad uses the wider screen in landscape mode to add a filmography on the left. This list is also accessible in portrait mode by clicking the “All filmography” button in the middle-right of the screen.

enter image description here

COMPLEMENTARY VIEWS

With this interface, a changed orientation triggers an auxiliary screen with relevant supplementary information.

CONTINUOUS Like YouTube, a continuous design enables the user to access a secondary interface by a simple rotation of the device

With regards to why some apps only support a specific view, I recommend going through the answers in this question as they give some valuable inputs on why designing for a specific layout might workout better

share|improve this answer
By default, Nexus 7 and 10 (and other Jelly Bean devices) are locked to portrait mode and need to be "unlocked" from the settings menu. Of course iOS is a different matter and I am guessing this is the mobile OS the poster is referring to. – Sherpanaut Feb 15 at 6:10
1  
@Sherpanaut iOS also has a setting to lock the orientation. Double click menu button > Swipe left > Click left-most icon. – thgaskell Feb 16 at 19:27
Yep, but it's not the default. I think you can also set it to be activated with the lock switch - at least on iPad that is. – Sherpanaut Feb 17 at 12:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.