How can I have a portrait-oriented menu in my lanscape-oriented view in Android?Hi,
I'm building an application with some items that must be landscape-oriented. Everything else (menu, view for editing the item, list of item...) should change orientation according to the orientation of the device. To do that I set android:screenOrientation="landscape" in the AndroidManifest.xml for the activity showing my items. Now, how can I create a portrait-oriented menu for that activity?
I'm also wondering if setting the screen orientation of the activity is the only way? Isn't it possible to set the screenOrientation for each view?
Thanks
Jul