Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

96
votes
5answers
54k views

Android - disable landscape mode?

How can I disable landscape mode for some of the views in my Android app?
45
votes
5answers
32k views

How to disable orientation change in Android?

I have an application that I just would like to use in portrait mode, so I have defined android:screenOrientation="portrait" in the manifest XML. This works OK for the HTC magic phone (and prevents ...
30
votes
8answers
16k views

Check orientation on Android phone

How can I check if the Android phone is in Landscape or Portrait?
28
votes
3answers
38k views

How do I lock the orientation to portrait mode in a iPhone Web Application?

I'm building a iPhone Web Application and want to lock the orientation to portrait mode. is this possible? Are there any web-kit extensions to do this? Please note this is an application written in ...
26
votes
7answers
16k views

Android WebView handling orientation changes

Just started working with the webview. The issue is performance following rotation. The WebView has to reload the page, which can be a bit tedious. What's the best of of handling an orientation ...
18
votes
4answers
5k views

Android phone orientation overview including compass

I've been trying to get my head around the Android orientation sensors for a while. I thought I understood it. Then I realised I didn't. Now I think (hope) I have a better feeling for it again but I ...
18
votes
4answers
16k views

Get current orientation of iPad?

In a given event handler (not the "shouldAutorotateToInterfaceOrientation" method) how do I detect the current iPad orientation? I have a text field I have to animate up (when keyboard appears) in ...
17
votes
2answers
8k views

How to lock orientation during runtime

Is there a way to lock orientation during runtime? For example I'd like to allow the user to lock the screen to landscape if the user currently in landscape and toggle the menu option.
14
votes
5answers
1k views

set JFrame Orientation from right to left!

To align my JFrame from righ-to-left, I use: setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); but this works only if I use the following style (decoration) of the JFrame: public class ...
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 ...
13
votes
3answers
2k views

Algorithm to detect photo orientation

I would like to rotate photos automatically, even when EXIF metadata about the image orientation is not available. Are there any good algorithms for detecting the orientation of a photo? The images ...
12
votes
1answer
4k views

Android - Camera preview is sideways

I am using a Preview to display what the camera see's on the screen. I can get everything working fine, surface created, surface set and the surface is displayed. However it always displays the ...
11
votes
5answers
16k views

Determine UIInterfaceOrientation on iPad

I don't need to specify the orientation in this case, I just need to detect it, but I'm having trouble. I have conditional code that should only work in portrait, and if the device is in landscape I ...
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
5answers
12k views

Best way to programmatically detect iPad/iPhone hardware

The reason I need to find out is that on an iPad, a UIPickerView has the same height in landscape orientation as it does in portrait. On an iPhone it is different. The iPad programming guide ...
10
votes
6answers
9k views

How do I reset the scale/zoom of a web app on an orientation change on the iPhone?

I'm having the same problem that a couple of others have had with getting the correct behavior in a web app on an orientation change, and there doesn't seem to be an obvious solution - I've seen this ...
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
3answers
410 views

What is the best method of re-rendering a web page on orientation change?

I have a fluid CSS layout which is rendering badly on an iphone when I change the orientation. (It looks fine when it is refreshed). I am the code below to refresh the page on orientation change, ...
9
votes
1answer
387 views

WPF - Animating a change in orientation of a stackpanel?

I'm trying to create an animation where an icon (a xaml vector graphic on a Viewbox-wrapped Canvas) goes from having its text (TextBlock) beside it to underneath it. I currently have the Viewbox and ...
9
votes
1answer
1k views

How can I get the current screen orientation?

I just want to set some flags when my orientation is in landscape so that when the activity is recreated in onCreate() i can toggle between what to load in portrait vs. landscape. I already have a ...
9
votes
3answers
1k views

UIModalTransitionStylePartialCurl not rotating

I've got a modal view controller that is being displayed using UIModalPresentationFullScreen with the TransitionStyle set as UIModalTransitionStylePartialCurl. This works beautifully. My problem ...
7
votes
3answers
234 views

How can I detect if UI orientation is locked or not on iOS?

Is it possible to detect UI orientation is locked or not currently? If so, how can I do that? I want to do something with gravity sensor when only UI orientation is not locked.
7
votes
3answers
148 views

Proper Way of Handling an Orientation Change in Android

What is the proper way of handling an orientation change in Android? When I researched this question there are two methods that came up. 1st Method Use the methods onSaveInstanceState(Bundle ...
7
votes
5answers
529 views

How do I force a specific UIInterfaceOrientation on an individual view in a UINavigationController?

Okay, so here's the situation: I have an app in which I only want ONE specific view in a UINavigationController to have a landscape orientation. This view is a UIImageView that I'm capturing a ...
7
votes
6answers
3k views

Restoring state of TextView after screen rotation?

In my app I have Textview and EditView. Both have data in it. When the screen orientation changes the data in the Editview remains, but Textview data is cleared. I am confused ... Can some one help ...
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
800 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
4answers
7k views

Horizontal UITableView

I want implement a layout in my ipad application that has a uitable view that scrolls left and right rather then up and down : So rather than row 1 row 2 row 3 ( scrolling vertically ) It would ...
7
votes
1answer
7k views

How to toggle orientation lock in android?

I want to create checkbox in my preference Activity that allows user to toggle orientation change. In similar questions people write only about complete orientation lock (by overriding ...
7
votes
6answers
6k views

Orientation in a UIView added to a UIWindow

OK, bear with me. I have a UIView which is supposed to cover the whole device (UIWindow) to support an image zoom in/out effect I'm doing using core animation where a user taps a button on a ...
6
votes
5answers
2k views

Screen orientation lock

Is there a reliable way to lock screen orientation on all Android devices? The code below works for my Nexus S and other phones, but for some reason ROTATION_90 corresponds to ...
6
votes
2answers
9k views

Lock screen orientation (Android)

I'm writing an android application that uses tabs with different contents (activities). In one of these activities, I would like to lock the screen orientation to "Landscape"-mode, but in the other ...
6
votes
3answers
9k views

How to set Android camera orientation properly?

I want to set the camera orientation according to the device orientation in Android but nothing seems to be working. I tried to rotate the Surface as well as the camera parameters but the camera ...
6
votes
4answers
679 views

After orientation change buttons on a widget are not responding

Hello I'm facing a problem with an appwidget that has one ImageView inside the xml layout for which I register a pendingintent that is handled in OnReceive method . Everything works okay until I ...
6
votes
4answers
2k views

WPF horizontal DataGrid

I would like to have a WPF DataGrid with a horizontal orientation, does anyone know a solution?
6
votes
2answers
4k views

How to save state during orientation change in Android if the state is made of my classes?

I was looking at the way Android handles orientation change for my application (I discovered that it restarts the mainactivity on orientation change :| ). I've seen that you can ovveride the method ...
6
votes
5answers
5k views

iPhone AVFoundation camera orientation

I've been tearing my hair out trying to get the AVFoundation camera to capture a picture in the correct orientation (i.e. the device orientation) but I can't get it to work. I have looked at ...
6
votes
1answer
1k views

UINavigationController back button half works in iPad landscape orientation

In an iPad application with a UINavigationController, everything works in portrait mode but in landscape mode the back button sometimes only goes back half a level. That is to say, on the first press ...
5
votes
2answers
3k views

Camera orientation problem in android

I am building an application that uses camera to take pictures. Here is my source code to do this: File file = new File(Environment.getExternalStorageDirectory(), imageFileName); ...
5
votes
4answers
2k views

UIWebView dones't resize correctly when orientation change?

I have add a webview,a titleLabel and a coverflowView on a viewcontroller's view as its subviews, I want it to change size when the orientation change. I have change the webview's frame in this ...
5
votes
3answers
891 views

Android - How to approach fall detection algorithm

I want to be able to feature a fairly simple fall detection algorithm in my application. At the moment in onSensorChanged(), I am getting the absolute value of the current x,x,z values and subtracting ...
5
votes
1answer
1k views

Centering a background image in Android

I have a background image about 100 x 100 that I want to center in an Android app. Is there a way to do this? I'm thinking it would greatly help with orientation changes for simple apps.
5
votes
5answers
3k views

willAnimateRotationToInterfaceOrientation not called on popViewControllerAnimated

In the MainViewController I have to adjust some images on orientation change. Easy - just add the code to the willAnimateRotationToInterfaceOrientation: callback - (void) ...
5
votes
5answers
4k views

UIScrollView not getting new size on orientation change

I have a very simple UIScrollView example that simply doesn't do what it's suposed to. Not sure if it's a bug with the API or a bug in my code. Basically, I've got a UIViewController with a ...
5
votes
2answers
1k views

iphone device orientation

During inAppPurchase, the storeKit will ask the username and password even though i set... [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight]; It ask ...
5
votes
1answer
529 views

Left-to-right Tree in LaTex, not top-to-bottom?

I'm looking to draw a tree where the root is on the left and each child node is drawn to the right. It seems that the qtree package can't do this. Any one have any ideas? I've found this document, ...
5
votes
2answers
2k views

Android - Forced locale resetted on orientation changes

I try to force the locale in my app to one the user specified. As this may be used to demonstrations, I want to change the language/locale in the app and not anytime for the whole device. I looked ...
5
votes
4answers
7k views

FFmpeg on iPhone - Modifying Video Orientation

I'm messing with h264 videos loaded with FFmpeg on the iPhone 3GS. The problem is any videos recorded in "Portrait" orientation have a transformation matrix applied to them causing them to display ...
5
votes
2answers
897 views

“Something wrong here, didn't expect PACKAGE to be resumed” error in andorid LogCat

I have an Android app modeled after the LunarLander example by Google. I am debugging it on a real device, (Motorola Droid) with Android 2.0. When the orientation changes, the program crashes on a ...
5
votes
2answers
10k views

UITabBarController, MoreNavigationController and the Holy Grail of Device Rotation

UPDATE: See my answer to this question first. This appears to be a bug. A minimal test case has been created and a report has been filed with Apple. (Fixed as of iPhone OS 3.1.) Here's a puzzler from ...

1 2 3 4 5 22