I have three different views for just one activity. These three views are stored in three different xml files.
I know it's possible to force activities orientation with this part of code :
<activity
android:screenOrientation="portrait"
</activity>
But I'd like to have portrait orientation on the first view, and landscape orientation on the two others. How can I achieve this?