在我的清單中,我設置了一個限制爲縱向方向的活動。但是我需要在條件下解除這個限制。那麼,如何以編程方式實現刪除方向限制?以編程方式移除方向限制
UPD:我目前的設置是:
<activity
android:name=".activity.MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait"
android:configChanges="orientation">
/**
* Defines whether the device being used is a tablet and if so adds horizontal orientation option.
*/
protected void _updateScreenOrientationModes(){
if(((MyApplication) getApplication())._isTablet == true)
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
}
我已經考慮過了:)。但是使用未知的方法不起作用。 – user1384991
這絕對適用於我在很多設備上。你確定你實際上正在調用setRequestedOrientation()嗎? –
好吧,它工作 - 謝謝 – user1384991