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
1 answer

AVD - Android doesn't care about set orientation

Hello I set the orientation to Landscape(by Eclipse icon flip orientation), but when i run the app the orientation is still standard(in Eclipse it is shown properly as landscape). Why is it so?
Yoda
  • 17,363
  • 67
  • 204
  • 344
0
votes
1 answer

Coordinates in landscape mode iPad app correspond to portrait mode

I'm having a weird issue with an iPad app I'm writing. I want to add a UIToolbar to my main view controller (set as root view controller in the app delegate). Within this main view controller, I support only landscape orientations. When I set the…
Mason
  • 6,893
  • 15
  • 71
  • 115
0
votes
0 answers

How to play video in landscape mode from one landscape to another landscape in Android

Here i develop one application which play video in only landscape mode. i set my activity orientation to "landscape" in AndroidManifest.xml file. and my video is playing very nice but problem is that i hold my device in Landscape mode i rotate my…
Keyur Android
  • 375
  • 2
  • 6
  • 20
0
votes
2 answers

Custom View replace a TableView in landscape mode

I am working on an iOS app with a small table view in portrait mode. And I want this view to become something totally different in landscape mode. I haven't coded it yet, but something like…
f.c.
  • 23
  • 5
0
votes
2 answers

Default-LandscapeLeft~iPad.png does not show up

I have some sort of problem, when it comes to customizing the iPad-launch-lcreens of a universal app on iOS5.0+. My app does not read the Default-LandscapeLeft~iPad.png and/or Default-LandscapeRight~iPad.png splashes. The strange thing about this…
nodepond
  • 501
  • 6
  • 24
0
votes
1 answer

How do I get a video to Play automatically on orientation change?

Im developing a mobile site and there is one thing i cant do. I think it is pretty simple but im pretty new at this. When in portrait, i can see the site perfectly (all is going great), but what i want to do is the following: I want the a video to…
0
votes
1 answer

Canvas crashes when a bitmap/circle/text or anything is drawn and the user switches to landscape or portrait

I pretty much just have a canvas on my android app that has a text in the center of the screen (I tried a set position like 100,100 or like canvas.getWidth()/2, canvas.getHeight()/2) when the user switches the mode whether from portrait to landscape…
Snipekiller430
  • 13
  • 1
  • 1
  • 4
0
votes
1 answer

iPad supported device orientations and landscape launch image

If neither (left or right) of the iPad landscape device orientations are supported, does the landscape launch image ever get shown?
davis
  • 1,911
  • 6
  • 26
  • 50
0
votes
2 answers

Issue when hiding the status bar in landscape mode iphone

In my iPhone application, the default orientation throughout the app is Landscape mode. I wanted to hide the status bar, so I used [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone]; in the appDelegate.…
Mithun
  • 459
  • 1
  • 10
  • 32
0
votes
1 answer

landscape mode video activity is restarting

I am playing videos in my app, video should play portrait and landscape mode withought restarting actvity, please any can give examples are links. using video view for playing video. public class PlayVideoActivity extends Activity { private…
0
votes
6 answers

iOS change screen orientation on demand

I have an app with an UITableView at the home screen. I made this view to always be in landscape orientation. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations …
Teo
  • 3,394
  • 11
  • 43
  • 73
0
votes
1 answer

PreferenceFragment plus headers when in landscape mode

how can I configure a preference activity to automatically show preference headers on the left and the details of the selected header on the right? Can you point me to some docs? Thanks in advance!
Gianni Costanzi
  • 6,054
  • 11
  • 48
  • 74
0
votes
1 answer

LibGDX Landscape orientation X and Y as location 0,0

Anyone know if it's possible to set the upper left corner of the Android device as 0,0? As of now, it seems the location is (on my HTC desire) X: 320, Y: 0. I want it to be 0,0. Anyone know if it's possible? Or how to. As I'm placing a lot of…
LG87
  • 695
  • 1
  • 10
  • 20
0
votes
1 answer

XCODE Storyboards, landscape view

I have created an app using Storyboards, and have designed it to be landscape. In the view controller.m file I have placed the following code: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return…
user1377373
0
votes
1 answer

iOS Game Center's "sign up" screen - changing orientation programmatically

For some reason I can't use any of the automatic functions for handling rotation on devices (like the shouldAutorotateToInterfaceOrientation). I always had to do it manually by using this: SOMETHING.view.transform = CGAffineTransformMakeRotation(…