Questions tagged [landscape]

A page or device orientation in which the horizontal axis is longer than the vertical axis.

A page or device orientation in which the horizontal axis is longer than the vertical axis. Contrast with portrait orientation, where the vertical axis is the major axis.

1434 questions
0
votes
2 answers

self.size is (320,480) even if my app is in landscape

If I print self.size i get (320,480) but it should be (480,320) because my app is in landscape this is how I go to my main view: var playScene = Menu(size: self.size) let skView = self.view! as SKView skView.ignoresSiblingOrder =…
Clément Bisaillon
  • 5,037
  • 8
  • 32
  • 53
0
votes
1 answer

Play video in landscape mode using action_view intent

Streaming video from server using native media player. Intent i = new Intent(Intent.ACTION_VIEW); i.setDataAndType("URL TO VIDEO", "video/mp4"); startActivity(i); It will lunch view intent successfully where it…
Mohsin
  • 1,586
  • 1
  • 22
  • 44
0
votes
1 answer

Issue with orientation of Image captured in landscape mode with GPUImageStillCamera

I am developing an Application where I am capturing image in landscape mode when device orientation is OFF. I am using GPUImageStillCamera for capturing image. But I'm getting issue in rotation of image. Issue is, When I capture image in landscape…
0
votes
1 answer

iPad landscape dimensions issue

I have application using Landscape orientation only. I have set Device orientation to "Landscape Left" only in project properties. Every controller has Orientation set to Landscape too. In IOS emulator works all right, width of screen is greater…
0
votes
1 answer

Landscape Orientation Left by default (keep right available)

I want to launch my application in landscape left per default. But I want to keep the possibility to turn it to landscape right. Is there a way to do so? (Because the app starts in landscape right per default right now)
LinusGeffarth
  • 27,197
  • 29
  • 120
  • 174
0
votes
1 answer

Landscape app and onConfigurationChanged never called

I need to handle device rotation in my app. At the same time, I need to have the app in landscape mode. If in the manifest file I've: android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden|screenSize" the…
andreasperelli
  • 1,034
  • 2
  • 11
  • 40
0
votes
1 answer

Optimizing an iphone app for 3G in landscape with opengl, camera, quartz

I have an iphone app that basically uses the camera, an opengl layer, and UIViews (some drawing with Quartz). It runs ok on 3GS, but on the 3G it is unusable. Particularly, when I press a UIButton, it literally takes sometimes 10 seconds to…
Joey
  • 7,537
  • 12
  • 52
  • 104
0
votes
1 answer

Landscape IOS app throws exception when presenting modal viewController

for reference, I am using Xcode 6.1 and targeting IOS 7.1. Looks like there are posts with similar problems but the suggestions have not worked for me. I have an app which I designed to work only in landscape mode. So I set the project to support…
malena
  • 798
  • 11
  • 26
0
votes
3 answers

iPhone SDK: TextView, Keyboard in Landscape mode

How do I make sure that the textview is shown and the keyboard is not obscuring the textview, while in landscape. Using UICatalog I created a TextViewController which works. In it there are two methods for calling the keyboard and making sure that…
Arnold
  • 41
  • 1
  • 6
0
votes
1 answer

ECSlidingViewController hides when device Orientation chages to Landscape

I am using ECSlidingViewController to reveal the side bar menu in my app. Its working fine but when the side bar appears on screen and i changed the orientation of device to landscape, the side bar automatically get hides without giving…
0
votes
1 answer

iOS application starts in LandscapeRight when device in LandscapeLeft

I have an iOS app for an iPhone that displays information on the screen. The Deployment Info indicates that LandscapeLeft and LandscapeRight are supported. When I start my app with the device in LandscapeRight, then everything is fine and turning my…
Laurent Crivello
  • 3,809
  • 6
  • 45
  • 89
0
votes
2 answers

iOS Uninstall view for wCompact hAny but retain it for other size classes

I would like to show a label at the bottom of a view, but there isn't enough room in compact width mode (iPhone portrait mode). I installed the label in wAny hAny and uninstalled it for wCompact hAny. It doesn't show in iPhone portrait mode as I…
Carl Carlson
  • 500
  • 4
  • 17
0
votes
1 answer

Screen Shift on UIInterfaceOrientationLandscapeRight

I've got this application mainly displaying photographs. The app was originally written for iOS 3.1 and upgraded to 4 before beeing published. It was not touched ever since. Now that the owner of the API appied some changes which ain't as compatible…
Hermann Klecker
  • 14,039
  • 5
  • 48
  • 71
0
votes
1 answer

Custom view for portrait and and orientation using storyboard using single view controller

I have an app that requires me to have image views and labels to laid out differently depending on portrait or landscape orientation. For example, in portrait mode, I have 2 UIImageViews on top and bottom that share the screen evenly. In landscape…
iamarnold
  • 229
  • 3
  • 12