landscape

Reporting Services - export to Excel in landscape format?

Hey, is there a way to export XLS files in landscape format by default? Thanks :-) ...

what is the best practise to do a landscape ipad app?

i am now doing a ipad app which only has landscape view. normally when i do a portrait view i just use a rootviewcontroller.view and addsubview in the root view. and using delegate to tell rootviewcontroller to remove it when switching views. i've already set the info.plist so that the only accepted orientation is 2 landscape mode. and ...

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 that displays a continent. I want to zoom in down to a city-size area (or closer), but still have detail. I think I need to re-generate the...

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 off, which drastically reduces the usability of the app :P Also, the proximity sensor doesn't seem to activate when in landscape mode (I c...

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 the same name as the layout i used before for both orientations) in there. Depending on my Screen Orientation BEFORE i start the app the ri...

Landscape mode or no. That is the question.

In terms of usability, what are the best practices for going landscape mode with your application. I can see the need for both in some screens, but I can also see no reason for others. Providing a landscape view just because you can opens your application's UI to layout problems, shrinking views and headaches for designers. What's your...

why is the landscape mode view still show width less then height?

try this, say you have a simple landscape mode iphone app, like a simple viewcontroller app. also uncomment the autorotate in viewcontroller .m file like so -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { NSLOG(@"width:%f,height:%f",self.view.frame.size.width,self.view.frame.size.height);...

iPhone proximity sensor in landscape not available?

Is the proximity sensor available in landscape mode? It only seems to work for me when I'm in portrait... ...

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 and then unlock, the application first 1-2 seconds is in portrait mode and then in landscape. Is it possible to skip theese 2 seconds? ...

iphone Landscape Orientation?

My app launches in landscape mode, however everything I have set up in Interface Builder shows up sideways on the screen as if it's in portrait mode. It's definitely not in portrait mode though. I dont understand why the app launches in landscape mode, but everything comes up as if it's in portrait mode...any ideas? ...

UITabbarController in Landscape only mode

I have a landscape only app with uitabbarcontroller with just two tabs Works fine, except for "two-stage rotation" warning i get. If have done the follwoing: Added key/string pair to info.plist for landscapeorientation For All view controllers - -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientati...

UITableView disappears when switching from portrait to landscape

hey there, I am creating an app that requires me to add tables in a particular page. The page should be in landscape mode but the application in portrait. I've figured out the switching i.e from portrait to landscape and back to portrait [homepage(portrait) -> tablePage (landscape)] and vice versa. The problem is the table view keeps red...

iPad: Changing the view according to the content when orientating (landscape / portrait)

I understand that Apple will do a kind of autoresizing thing when iPad / iPhone change orientation and you can set views' autoresizing masks. But what if the views' resizing is not that simple? for example, I have a TableView and each cell has different number of letters. Assuming in Landscape mode, the TableView has perfectly built s...

How to draw in UIViewController in landscape orientation on the iPhone?

Hey guys, there are already some questions on this topic. Unfortunately none of them helped me in anyway. So here is the thing. I am working on an app atm and it has one tabcontroller with two tabs, which contain multiple navigationcontroller on top of each other. Now in one tab at the top level navigation controller, I want to draw some...

How to find out if ipad is in landscape/portrait mode in javascript/jquery?

I want to add an extra div if the ipad is in landscape mode. Is there some sort of if statement that could find this out? Thanks ...

NavigationController on iPad and LandScapeMode

Hello, I have a problem with my application. I have a SplitViewControler with a NavigationController in its content. When I push a new ViewController and I want come back on my previous ViewController by clicking in previous button, the content changes correctly but my tabbar doesn't change and I must reclicking in order to obtain the c...

UITabBarController with portrait / landscape views

I have a subclass of UITabBarController which i am using so that i can rotate to use my app in landscape too. How would i go about rotating my UI and getting each view controller to use a landscape view xib? I have always just written apps before where returning YES for shouldAutorotate... handles it automatically for me... this isn't ...

iPad landscape-only app not responding to touches near the bottom of the screen

Hi, I’m an experienced developer, but relatively new to iOS. I’m having some trouble with an iPad App, where my views are not responding to button touches in the bottom third of the screen. Touches on other buttons are working fine, so I know my views are getting hooked up properly when they’re loaded (I’ve created them in IB.) I get ...

self.view.frame changed size ifself unexpectedly in landscape mode

Hi all, I've setup the view controller's view via IB. The view is set to landscape with width 480 and height 320. It loaded correctly in the simulator. However, when I checked self.frame.size by using NSLog, I found that the frame size changed itself without any rotation of device or any code. Here is what I get: In viewDidLoad -->...

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 maximum energy path is more correct terminology, but in other words even if a path travels a long distance around the landscape but does no...