My main activity is a TabActivity.
I have some activities presented by the tab activity which I want to lock to portrait orientation.
In AndroidManifest.xml when I set the screenOrientation property for any of the activities presented in the TabActivity it seems to be ignored for example:
<activity android:name="FeedActivity"
android:screenOrientation="portrait">
</activity>
What is the most effective way of selectively disabling orientation changes with Tab Activities? Is it possible via the manifest?
This project is currently firmly pre-honeycomb. While I'm looking forward to being able to update it to API 11 and beyond I'm trying to find out if it is possible to address this problem without moving to fragments.