根據進入Activity的手持方向鎖定Activity的Orientation

在Activity的onCreate()中調用以下函數便可實現,須要注意的是Activity的setRequestedOrientation()方法須要傳入的是ActivityInfo中的Orientation值。
private void lockActivityOrientation(){
        int orientation = getResources().getConfiguration().orientation;
        int activityOrientation = 0;
        if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
            activityOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
        } else {
            activityOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
        }
        setRequestedOrientation(activityOrientation);
    }
相關文章
相關標籤/搜索