Orientation is the way up, down, left or right something is facing or being held in.
0
votes
1answer
19 views
Tabs content is visible on top of another after screen rotation
I have read alot on stackoverflow on fragments issues but I cant find a solution to my problem.
I have a Tabhost and when I change rotation of the device and then select another tab, the view from ...
2
votes
1answer
11 views
orientation for component not work
i write this code , to test the orientation change , i draw a quad with width=stage.stageHeight , and height =stage.stageHeight too , when change the orientation , the width of quad showed is 800 not ...
1
vote
0answers
11 views
AVCaptureSession preview screen orientation in iOS5
I asked this question a while back. I accepted the answer because it worked... until I tried it out on iOS5.
My app is landscape only. Opening the camera preview and holding the device with the home ...
0
votes
1answer
10 views
iOS6 Orientation with NavigationController
I am developing an application that has several views and a root view controller. It's based on UINavigationController using pushViewController:
In didFinishLaunchingWithOptions:
BIDLoginController ...
0
votes
0answers
19 views
Have detected ipad orientation, now need to force it to rotate
I need to force a site on iPad to a) detect orientation and b) when in portrait to force to orient to landscape..
Am using the code which detects the orientation fine but having tried a range of ...
0
votes
0answers
10 views
getting a black screen when using setRequestedOrientation()
I have a FragmentActivity with some fragments in them. When I go from the fragment I am on (Fragment A) which I have the phone in the portrait position to the next fragment (Fragment B) which I have ...
0
votes
0answers
3 views
animation defect of gridview items after orientation change
Hie!
I have a Activity with pointed onConfigurationChanges parameter in Manifest.xml. In that activity I have Fragment that contains GridView. There's a trouble:
1. I'm starting "multiple choice ...
0
votes
0answers
12 views
Android window.orientation unexpected results
I'm currently developing a web app for mobile devices that needs to be shown in landscape mode, but as you can't fix orientation I am displaying a rotate device image when the device is in portrait ...
0
votes
4answers
28 views
statusBarFrame.height returns 1024.0 when in Landscape (iPad)
I have been using the following code to get the height of the status bar:
[UIApplication sharedApplication].statusBarFrame.size.height
This works perfectly in Portrait mode and returns the expected ...
0
votes
0answers
15 views
iPad (iOS 5.x) - Second rootViewController has the same orientation as the first
In an iOS app for iPads I need the first viewController, set as root, to be stuck in Portrait and the rest of the viewControllers, which will also be set as roots, to have support for all ...
0
votes
1answer
23 views
Get horizontal heading from device orientation
I want to use the device orientation event to check the heading of the mobile device.
This is what I do:
if (window.DeviceOrientationEvent) {
window.addEventListener("deviceorientation", ...
1
vote
1answer
32 views
iOS - How to make rotation on the center of image when orientation changed
In Apple Photos App, when it is rotated from portrait to landscape. The image will rotate on its center point. However, the photo app created myself just not rotate on the center point.
The structure ...
0
votes
0answers
44 views
VideoView orientation change to full screen (show/hide actionbar and notification)
Hi I have this problem on playing orientation change. On portrait, I have the following XML in my layout directory.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
0
votes
0answers
16 views
kindl fire orientaion lock programatically
I add below line to my activity in manifest as
android:screenOrientation="nosensor"
then I add the below code to oncreate() in my java class
if (isSmartphone(this))
{
...
1
vote
0answers
24 views
How manage orientation of other applications from my app?
I see this app: https://play.google.com/store/apps/details?id=nl.fameit.rotate&hl=en
that can set the orientation of every app at start.
how could I set the orientation of another app? I have not ...
0
votes
0answers
18 views
Recognize CSS orientation in iFrame
Is it possible that an iframe can recognize the orientation of its parent website? At the moment the css media query is only working at my parent site.
I tried to fix this issue by sending a post ...
1
vote
1answer
44 views
what is the default orientation of the iPad?
I have heard a few conflicting comments regarding the default orientation of the iPad.
Some say it is portrait (how I tend to use my iPad), however some say it is landscape.
I have this sort of ...
0
votes
1answer
19 views
Orientation differences between Galaxy Tab and Transformer
I developed an Augmented Reality application using the front-camera and the min3d library. This application works fine on the Samsung Galaxy Tab 10,1 (first generation), running Android 4.0.4
But ...
0
votes
0answers
16 views
uiwebview stuck with portrait size in landscape mode
I have a simple html page with no css formatting being displayed in a uiwebview. My uiwebview in landscape mode is rotated correctly, but the size is limited to what appears to be portrait size. The ...
0
votes
0answers
18 views
App crashs on repeated use of camera , change orientation and cropping using avfoundation in ios
I am building an app in which images taken with camera is uploaded to server. I am using AVFoundation framework for capturing image. I am changing the orientation to up and cropping the image to have ...
0
votes
0answers
25 views
iPad Safari “width=device-width” orientation bug
A weird bug occurs on iOS 6.1 iPad2 Safari:
Open the test link on iPad
Rotate from vertical to horizontal and scroll down a little
Here's the screenshot — there should be no black rectangles
It ...
0
votes
1answer
38 views
iOS 6 - Force portrait mode only not working
I made an app wich need to be only portrait :
I set up portrait in the Plist file, in the Project Infos, i tried everything but my app still change orientation
My app is using an ShSideBarController ...
0
votes
3answers
37 views
How NOT to re-create activity after orintation in android?
I have activity the contains a ListView, and this listview is filled with data from a web service in onCreate() function ( using AsyncTask). When the screen orientation changes the activity is ...
0
votes
1answer
49 views
different design for portrait and landscape mode in android
Hi i have created two fragments on single layout.
In layout-land :
fragments need to display horizontally.
In layout-port :
fragments need to display vertically.
Now i have to run the app on ...
0
votes
1answer
29 views
iOS 6: Unable to force portrait mode generally and landscape mode in one single view
I am searching the whole net for days, but can't find an answer.
The problem is: I can't force my app to present ALL UIViewControllers just in portrait mode, except one UIViewController, which should ...
0
votes
1answer
46 views
IOS6 Ipad Orientation issue
Don't think it as duplicate question.
Please read whole question and answer.
I am working on an iPad app. It is to capture the image in popover and crop the image in full screen in next view.
Here ...
0
votes
0answers
26 views
Xamarin Studio MonoTouch application landscape orientation
I am trying to clone Creating tabbed application Xamarin sample.
http://docs.xamarin.com/guides/ios/user_interface/creating_tabbed_applications
public override bool FinishedLaunching (UIApplication ...
0
votes
1answer
69 views
iOS/Android Phonegap - portrait for smartphones, landscape on tablets
I'm creating a multidevice multiplatform app with Phonegap.
Basically, I have two scenarios:
Smartphones should be locked to portrait mode.
Tablets should be locked to landscape mode.
I should ...
2
votes
1answer
67 views
WebView not re sizing properly on orientation change
I am loading a video url into webview using webview.loadUrl(). The player is encoded in the html itself so I only have to load the url into web view.
In case if I dont give ...
-1
votes
0answers
16 views
Fancybox 2 orientation change on iOS [closed]
Changing the orientation from landscape to portrait on iPhone or iPad wrecks the fancybox positioning.
An example can be seen on fancybox's own site: http://fancyapps.com/fancybox/#support and select ...
0
votes
0answers
20 views
Interface orientation UITabBarController C#
I am building an iOS-application in Xamarin (C#, iOS 6) and I am having a problem with the interface orientation in combination with a UITabBarController (and iOS 6).
I have 4 navigation controllers ...
0
votes
1answer
33 views
Camera records upside down sometimes
When i am in landscape, if it's at 0degrees, it captures a good video, but if i turn the phone over 180 degrees, it will record upside down, how can i change this?
When i start recording i do this ...
2
votes
1answer
25 views
Android Video Screen Orientation
I am trying to include some videos in my application but the videos are working in one orientation at a time.
I want to change the orientation according to Sensor.
Here is the code:
<activity
...
0
votes
1answer
54 views
iOS simulator Landscape Portrait
I have a iOS application which has been build on XCode earlier iOS 5 and supports the Landscape left , Landscape right and portrait (bottom home ) and from the info.plist --> support interface ...
0
votes
0answers
16 views
Autorotate not happening in iOS6 until I manually change the orientation
I have 2 view controllers, the first is in landscape and the second in portrait. When I go from #1 to #2, it doesn't flip to portrait unless I manually move the simulator to be in portrait. When this ...
1
vote
0answers
25 views
Android Orientation with Video
I am just developing one Android app, in which we have to capture the video. Now user will capture the video in portrait view but while it will play, it will automatically play in landscape.
i.e. ...
0
votes
0answers
27 views
Converting orientation and speed to position
I have a body located at (x,y,z) at time t0. I know the body is moving at a constant speed, s. The body's orientation is (h,p,r) (heading pitch and roll). I would like to calculate the location of the ...
0
votes
5answers
112 views
iOS 6: how to force change orientation when pushing view controller into the navigation controller stack [duplicate]
I think this question should've been asked a million times by now, but I still can't find an answer to this.
Here's my hierarchy: UINavigationController -> UIViewController 1 ->(push)-> ...
0
votes
0answers
7 views
onorientation change and onresize events not firing in iPad
I have a frameset based html pages and for some reason the onorientation and onresize events dont fire on a iPad when loaded into a Learning management System.
The events work fine when launched via ...
1
vote
1answer
26 views
Graphviz: label on the left side
in case I use the following Graphviz code, a simple graph will be created
which shows the label on the right hand side.
digraph lable_on_the_right_side {
/* define nodes */
node ...
0
votes
0answers
49 views
Android service long press any button to lock screen orientation in current mode
I want to make a app in which long press on any button locks the screen orientation
[Edit: where the OP has "button", the OP means "hardware key"]
Here is my code . But this is for one cativity ...
0
votes
0answers
40 views
Google Maps API Utilizing iOS's Native Compass Device Orientation
If you open up Maps on the iPad and click the location arrow twice. You will notice that the map will rotate depending on the device's orientation. This is what I want my application's map to do in my ...
0
votes
1answer
73 views
Lock screen rotation for **ALL** Android Apps on a device
this is my first post so please correct me if I do any mistake regarding rules :-)
Heres my problem:
I am trying to set a fixed screen rotation for all Apps on an Android device
(not just my App). ...
0
votes
2answers
22 views
setDisplayOrientation changes upon onResume()
I'm using the camera and I have it in portrait mode for my app by
camera.setDisplayOrientation(90);
when the activity goes into the background and comes back the display orientation is back to 0 ...
0
votes
1answer
20 views
How android:configChanges=“orientation” flag affects ACTIVITY STACK when it includes translucent activities?
Have following Activities
MainActivity
TranslucentChildActivity
DialogGrandChildActivity
NOTE: android:configChanges="orientation" is mentioned in Manifest for TranslucentChildActivity so that ...
0
votes
1answer
23 views
Android exiting from other screen orientation
I have MainActivity. I start new Activity from it.
Then in that new activity I have layout and layout-land file. I have a close button and a handler of it which performs finish() method. If I open the ...
1
vote
1answer
30 views
Python: Decide which scrollbar is moving in ScrolledPanel
This question continue the question on the link : wxPython Event for ScrolledPanel. I edited the code a little bit so that OnScroll function get the x position of the content's scrollbar and use that ...
0
votes
0answers
42 views
application crashed on orientation change
UPDATE: I had my problem solved by using
android:configChanges="orientation|screenSize"
My application crashed when I tried to change orientation, and I have looked through several other threads ...
0
votes
1answer
64 views
Orientation Landscape iOS 5 on xCode 4.6
I want my app to be landscape. I tried everything, my storyboard's orientations are landscape, I changed the supported orientations and the initial orientation in info.plist. Can anyone help me?
In ...
0
votes
1answer
29 views
Navigation Based App : only one landscape UIVIewController
still new to objective C and iOS i'm facing a new problem.
That's quite simple, i needed only one UIViewController in my app to be in landscape mode so i built my app this way :
One custom ...

