Re: [android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-10-22 Thread Stefan Alder
Dianne, You mentioned checking the android.os.BUILD and setting the orientation to reverse landscape only if it meet or exceeds api level 9. I assume I would do this in onCreate. If I do do this, there are no animations to a new Activity (the slide in), only animations when ending the new

Re: [android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-09-28 Thread Stefan Alder
Still looking for a solution to this. Do I need to set the screenOrientation to 'landscape' in the manifest and then rotate all layouts by 180 degrees? What's the best way to do this? Thanks On Tue, Sep 27, 2011 at 3:54 PM, Stefan Alder twigbra...@gmail.com wrote: Dianne, Thanks for the

Re: [android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-09-28 Thread Stefan Alder
I found this thread, which seems related, but the result is a blank screen. Does anyone know if this should still work? and will it apply to all children views? http://groups.google.com/group/android-developers/browse_thread/thread/b4edcc487c1f28d7 private static class FlipLayout

[android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-09-27 Thread Stefan Alder
I trying to ensure that my app and all of its activities are locked to landscape right (reverse landscape) (where the device button and mic located to the left of the screen).I see you can set the screnOrientation in the manifest to 'reverseLandscape', but this only works for API level 9.

Re: [android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-09-27 Thread Dianne Hackborn
You'll need to check the API level at android.os.Build, and only set your activity to this value when running on API 9 or later. On Tue, Sep 27, 2011 at 3:45 PM, Stefan Alder twigbra...@gmail.com wrote: I trying to ensure that my app and all of its activities are locked to landscape right

Re: [android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-09-27 Thread Stefan Alder
Dianne, Thanks for the response. My question is how can I achieve the same effect when running prior to API level 9. On Tue, Sep 27, 2011 at 3:49 PM, Dianne Hackborn hack...@android.com wrote: You'll need to check the API level at android.os.Build, and only set your activity to this value when