2013-04-04 81 views
0

對於一項活動,我有三種不同的觀點。這三個視圖存儲在三個不同的xml文件中。強制定位以查看

我知道這可能迫使活動取向的這部分代碼:

<activity 
     android:screenOrientation="portrait" 
    </activity> 

但我想對第一種觀點縱向,並在另外兩個橫向。我怎樣才能做到這一點?

回答

3

你可以看看setRequestedOrientation(int)。只需在設置視圖後調用它即可。

http://developer.android.com/reference/android/app/Activity.html#setRequestedOrientation(int)

你可能想看看添加機器人:configChanges =「方向」,這讓我們的Android知道你照顧的方向改變自己。

+0

感謝它的工作,但是當我設置一個新的方向時,我的onCreate是召回......所以我找到另一個解決方案:) – theMouk 2013-04-04 15:49:37