Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
774 views

Force iPhone Orientation

I'm making an iPad app and I need to force the orientation to portrait to several parts of the app. I used the undocumented "setOrientation" API and the app was rejected. Is there a documented way to ...
1
vote
3answers
3k views

setOrientation problem

I have a really strange orientation issue. I have a sequence of view controllers under a navigation controller. One of them can take any orientation. When I'm leaving the orientation I have to use ...
1
vote
3answers
2k views

Any way to silence the UIDevice setOrientation warning?

Anyone have a simple way to silence the undocumented UIDevice setOrientation warning? I found this piece of code that silences the undocumented UIPickerView setSoundsEnabled warning.
0
votes
2answers
1k views

use of setOrientation method on a LinearList object

The setOrientation method of LinearLayout will not accept the argument VERTICAL, contrary to the following from the android reference public void setOrientation (int orientation) Since: API Level 1 ...
0
votes
1answer
87 views

how to adjust the view to land scape mode when application launches in landscape mode

i have a split view in ipad and its working fine when i launches it in poprtrait but is showing in portrait views in landscape also... how to automatically adjust the views in land scape mode when ...
0
votes
0answers
861 views

Set ORIENTATION_LANDSCAPE not working Android

@Override public void onConfigurationChanged(Configuration _newConfig) { if (_newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) { Toast toast = Toast.makeText(this, "test ...