I have an application which is in portrait mode. However, I want to run a particular activity in landscape mode. I have tried the following with no success.
1. android:screenOrientation="landscape" in AndroidManifest.xml
2. this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); in activity requiring landscape mode
as specified here. Please help.
Thanks
The manifest solution supplied in the question you linked to definitely works. Here is a sample project using
android:screenOrientation="landscape".