Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
3k views

How to restrict my app to landscape mode?

I have my iPad application created using the SplitView template. I wonder what is the best way to restrict my application to landscape mode? I have tried overriding ...
10
votes
3answers
3k views

iPhone Landscape FAQ and Solutions

There has been a lot of confusion and a set of corresponding set of questions here on SO how iPhone applications with proper handling for Landscape/Portrait mode autorotation can be implemented. It is ...
10
votes
2answers
8k views

How do I specify different layouts for portrait and landscape orientations?

I've seen references to being able to specify two separate layout xml files for an activity, one for Portrait and one for Landscape. I've not been to find any information on how to do that though. ...
9
votes
5answers
5k views

UIImagePickerController in Landscape

I have been searching for an answer to this, but cannot come up with anything. Apparently, iPhone SDK 3.0 made it possible that UIImagePickerController can be displayed in landscape mode - but I am ...
8
votes
5answers
5k views

What XNA based 3D terrain and physics libraries exist?

I'm planning on creating a game that contains a landscape with objects on it. The landscape will be defined using a heightfield, and the objects will move about on top of, and fly over the terrain. If ...
7
votes
3answers
6k views

Force “portrait” orientation mode

I'm trying to force the "portrait" mode for my application because I my application is absolutely not designed for the "landscape" mode. After reading some forums, I added this line in my manifest ...
7
votes
2answers
799 views

HTML 5 video in UIWebview Orientation landscape

I have an iPhone application where every view is in portrait. I have a UIWebview with some HTML in it. Amoung that there is a html5 tagged video. When I play that video, it plays in portrait only. In ...
7
votes
6answers
449 views

Shortest path on a graph where distances change dynamically? (maximum energy path)

I'm trying to find the shortest path between two maxima on a discrete energy landscape whereby the shortest path is that which reduces the least in height over the course of the total path. Probably ...
7
votes
8answers
12k views

UIPicker sizing in landscape mode

I am trying to develop an app with a UIPicker in landscape mode, taking up (almost) the entire width of the screen (with 5 or 6 components). Can you please tell me how to set the size of UIPicker. ...
6
votes
3answers
1k views

Storyboards orientation support for xCode 4.2?

I upgraded to xCode 4.2 and it's new Storyboards feature. However, could not find a way to support both portrait and landscape. Of course, I did it programmatically, with 2 views, one for portrait ...
6
votes
2answers
1k views

Landscape only iPhone app with multiple nibs

I'm developing an iPhone application that has several nibs, and should be landscape only. The application is set to start in landscape mode via its Info.plist file. I have two view controllers: ...
6
votes
1answer
2k views

iPhone landscape-only app view axis confusion

Using the information here: iPhone Landscape-Only Utility-Template Application I am able to launch, use and maintain my view as landscape only. However, I am confused about the axis. The absolute ...
6
votes
4answers
3k views

How do I make an HTML page print in landscape when the user selects 'print'?

We generate web pages that should always be printed in landscape mode. Web browser print dialogs default to portrait, so for every print job the user has to manually select landscape. It's minor, but ...
5
votes
1answer
186 views

android camera stretched in landscape mode(somewhat urgent :'( )

Thanks for taking the time to look at my issue. The app i'm writing requires camera functionality. So to learn about how to operate the camera, i followed this script: ...
5
votes
2answers
441 views

Perlin Noise detail level. How to zoom in on a landscape?

I've written my own Perlin Noise implementation and it works well. I can 'zoom' in and out by changing the frequency, but as I zoom in the noise gets smoother and smoother. Assume I have a landscape ...
4
votes
1answer
118 views

Coordinates in landscape mode in Windows Phone

Here is my application in the landscape mode (and the two borders inside the grid called 'LayoutRoot'). 1) I am trying to receive border1's coordinates in this way: GeneralTransform ...
4
votes
3answers
288 views

Is there a method to actually *visually design* twin views (landscape + portrait) in Interface Builder?

My current design calls for some cool animation between portrait and landscape views of the data. The data representation is fairly complex, so between graphical and data elements, there are probably ...
4
votes
4answers
4k views

resize the image according to the portrait and landscape in jquerymobile?

I have to add image on the header and background . Is it possible to set the image automatically resizing according to the screen orientation (portrait and Landscape). I set the image in portrait ...
4
votes
1answer
1k views

How to detect landscape left (normal) vs landscape right (reverse) with support for naturally landscape devices?

What I would like to do: Detect the current layout orientation of the device (Portrait, Landscape-Left, Portrait(upside down), Landscape-Right) Differentiate between the two possible landscape modes ...
4
votes
5answers
396 views

Android orientation issue

I have application which works only in landscape orientation . I set that in xml layout. When I'm starting application it works ok . But when the application is started and next if I lock the phone ...
4
votes
1answer
5k views

Best way to change XIB files based on rotation?

My app has so far just been a portrait-based application. However, I am adding landscape mode to a new version, but have found that my XIB files look shocking when rotated from portrait to landscape. ...
4
votes
2answers
3k views

Resizing UINavigationBar on rotation

I have a subclass of UIViewController which handles a UIView. The viewcontroller is presented modally (it slides up from the bottom of the screen). At the top of the view, i have added a navigation ...
4
votes
3answers
5k views

Landscape orientation for UITabBarController?

The UITabBarController does not allow landscape orientation. So I used a subclass of UITabBarContoller (called RotatingTabBarController). Its sole purpose it to allow rotation by returning YES to ...
4
votes
6answers
10k views

tabBarController and navigationControllers in landscape mode, episode II

I have a UITabBarController, and each tab handles a different UIViewController that pushes on the stack new controllers as needed. In two of these tabs I need, when a specific controller is reached, ...
4
votes
3answers
5k views

iPhone Landscape-Only Utility-Template Application

I'm trying to create an iPhone application that is always in landscape mode, using the Utility application template. Here's what I did: Create a new iPhone application project, using the Utility ...
3
votes
1answer
356 views

“UIScreen mainScreen] applicationFrame]” for Landscape mode

I have to ask it. Using [[UIScreen mainScreen] applicationFrame] Is a beautiful way to get the working area of the iphone or ipad in portrait mode. But, if I want get the same size in landscape, ...
3
votes
3answers
2k views

Orienting iOS splash image to landscape/portrait according to launch orientation

I have an app that can launch in portrait or landscape. I'd like the Default.png file (the splash image that appears when the app launches) to show the image in the correct orientation so I expect I'd ...
3
votes
1answer
2k views

How to Turn a View into Landscape Mode in Xcode 4

In xcode 3 there is that little arrow next to the view title. That little button has gone in xcode 4.
3
votes
4answers
314 views

UIActionSheet in Landscape has incorrect buttonIndicies

I have an action sheet that is causing me grief on the iphone in Landscape orientation. Everything displays just fine, but in Landscape, the first real button has the same index as the cancel button ...
3
votes
3answers
2k views

UIImagePickerController (using camera as source) does autorotate on iPad2, how do i stop it?

I am trying to write an app with some camera function, and I use an overlay view to decorate it with an image. This is how I implement the app: I use the UIImagePickerController to who the user what ...
3
votes
1answer
393 views

How do I display a landscape coverflow style view when device is rotated?

I'm working on an app that will need to display a coverflow style view in landscape when the device is rotated to landscape orientation. I've worked on a few apps before, but none of them required ...
3
votes
3answers
5k views

jQuery mobile landscape and portrait class

I've started using the jquery mobile framework yet I cannot seem to use the landscape and portrait classes to minipulate styles. documentation says The HTML element will always have a class of ...
3
votes
1answer
917 views

landscape mode problem with a navigation bar

I have a ViewController that manages a view in which I have a Table View, an ImageView and a Navigation Bar. When I put it in the landscape mode the Navigation Bar doesn't resize to 32, it still ...
3
votes
2answers
3k views

Rotate MPMoviePlayerController to Landscape - iPhone SDK

I am trying to rotate my MPMoviePlayerController to landscape view, but it always stays in portrait mode. I am doing this in a UIViewController and I still can't rotate my MPMoviePlayerController when ...
3
votes
3answers
934 views

Android: Screen Rotation within Activity doesnt switch portrait/landscape layout

I build my Android Application and want do add layouts for different orientations now. I created a layout-land folder and put a different layout for my first Starter Activity "myStartActivity" (with ...
3
votes
1answer
262 views

Can I monitor the iPhone proximity sensor without turning off screen? Also, landscape

I've got the proximity sensor working so that I can trigger events when in proximity, but I'm trying to use it as a sort of dead man switch. The problem is that whenever in proximity, the screen turns ...
3
votes
1answer
2k views

WPF to XPS in landscape orientation

i am trying to to generate a XPS Document from a WPF Control. Printing works so far, but i cannot find a way to create the XPS in landscape mode. My code to create the XPS file, mostly taken from ...
3
votes
2answers
2k views

Rotation Portrait Landscape with 2 XIB

i have got 2 GUIs and 2 Controllers 1 is called landscapeguicontroller and the second is called highguicontroller. Now generally i call the highguicontroller, and when i rotate my iphone it detects ...
3
votes
6answers
8k views

Iphone Landscape mode switching to Portraite mode on loading new controller

My app launches in landscape mode correctly and works great: - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { if(interfaceOrientation == ...
2
votes
1answer
106 views

How to change camera Overlayview orientation landscape left and right iPhone?

In my iPhone application i have a UIImagePickerController for take photos. I have hide all default camera controls and added UIView with Two button as a CameraOverLayView in UIImagePickerController. ...
2
votes
2answers
114 views

Android, front and back camera Orientation , Landscape

In my camera app, you can switch between the front and back camera. When I take picture with the back camera the picture is the same like the preview shows. But when I switch to the front camera, the ...
2
votes
0answers
62 views

Autoresize the root view when device is rotated

I am developing PDF reader. I am facing problem while rotating the simulator. What I am doing is, when view is loaded by the ViewController(i.e. in the loadView), I am creating the UIScrollView which ...
2
votes
3answers
76 views

setOnItemClickListener for landscape mode

My android app works on landscape mode. I have a listview that contains some items. The problem is the setOnItemClickListener is called only when I click the name of the item. I mean that if I select ...
2
votes
1answer
123 views

UIAlertView with 3 buttons hides message in landscape mode

My UIAlertView has a message and 3 buttons, my problem is the alert view display normally in portrait but it hides message in landscape mode as below screenshots. How to make the message appears? ...
2
votes
4answers
400 views

Scrolling, zooming UIScrollView and interface orientation rotation. How to use autoresize and more

This should be a pretty common thing to do, but I haven't been able to get it to work exactly right. I have rectangular content. It normally fits in 320x361: portrait mode minus status bar minus ad ...
2
votes
2answers
136 views

UISplitViewController for iphone

I want to create an iPhone (not iPad) app with a split screen view that shows two view controllers on the same screen, one on the left and one on the right of the screen (landscape only). Is there a ...
2
votes
1answer
82 views

Differentiating between the two landscape modes

When rotating an Android device into Landscape mode, it can be in 2 different positions, from the device's perspective, the bottom buttons could be either on the left or on the right. Is there a way ...
2
votes
0answers
635 views

Xcode 4 Orientation to Landscape grayed out

I'm trying to create an ipad app in xcode 4 that supports ONLY landscape view. By default the MainWindow.xib file displays the interface in Portrait mode. I cannot change it to landscape mode because ...
2
votes
1answer
227 views

Working with Landscape Views designed with interface builder

I'm trying to understand something that , by googling around, seems like a bug in the iPhone sdk, but maybe its just something hidden im not sure of. I designed a new view in Interface Builder, in ...
2
votes
1answer
141 views

On-the-fly Terrain Generation Based on An Existing Terrain

This question is very similar to that posed here. My problem is that I have a map, something like this: This map is made using 2D Perlin noise, and then running through the created heightmap ...

1 2 3 4 5 9