Android 7.1 屏幕旋转流程分析

一、概述

Android屏幕的旋转在framework主要涉及到三个类,结构如图

PhoneWindowManager:为屏幕的横竖屏转换的管理类。

WindowOrientationListener: 是一个传感器的listener的基类,PhoneWindowManager的MyOrientationListener继承自该基类。

WindowManagerService:是具体实施屏幕旋转的工作。

代码路径:

PhoneWindowManager:

路径:/frameworks/base/services/core/java/com/android/server/policy/PhoneWindowManager.java

WindowOrientationListener:

路径:

/frameworks/base/services/core/java/com/android/server/policy/WindowOrientationListener.java

WindowManagerService:

路径:

/fram eworks/base/services/core/java/com/android/server/wm/WindowManagerService.java

总的流程大致如下:

PhoneWindowManager实现一个MyOrientationListener用来注册和监听传感器(屏幕)变化,根据用户设置情况(是否允许屏幕旋转)来启动和关闭监听。当屏幕方向变化时PhoneWindowManager通过调用 WindowManagerService具体来完成屏幕的旋转。

二、流程分析

1)PhoneWindownManager 开启监听

A: 监听用户设置的变化

PhoneWindownManager 通过注册一个ContentObserver来监听用户设置的变化,当用户设置变化后调用updateSettings()函数,做设置变化的更新和做相应的动作。

  class SettingsObserver extends ContentObserver {

        SettingsObserver(Handler handler) {

            super(handler);

        }


        void observe() {

            // Observe all users' changes

            ContentResolver resolver = mContext.getContentResolver();

            resolver.registerContentObserver(Settings.System.getUriFor(

                    Settings.System.END_BUTTON_BEHAVIOR), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.Secure.getUriFor(

                    Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.Secure.getUriFor(

                    Settings.Secure.INCALL_BACK_BUTTON_BEHAVIOR), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.Secure.getUriFor(

                    Settings.Secure.WAKE_GESTURE_ENABLED), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.System.getUriFor(

                    Settings.System.ACCELEROMETER_ROTATION), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.System.getUriFor(

                    Settings.System.USER_ROTATION), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.System.getUriFor(

                    Settings.System.SCREEN_OFF_TIMEOUT), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.System.getUriFor(

                    Settings.System.POINTER_LOCATION), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.Secure.getUriFor(

                    Settings.Secure.DEFAULT_INPUT_METHOD), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.Secure.getUriFor(

                    Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,

                    UserHandle.USER_ALL);

            resolver.registerContentObserver(Settings.Global.getUriFor(

                    Settings.Global.POLICY_CONTROL), false, this,

                    UserHandle.USER_ALL);

            updateSettings();

        }


        @Override public void onChange(boolean selfChange) {

            updateSettings();

            updateRotation(false);

        }

    }

B:监听传感器(设备方向)的变化

PhoneWindownManager是通过其中的updateSettings()函数来更新用户的设定来判断是否需要启动方向监听(即设置中的屏幕锁定按钮),如果允许屏幕旋转则去注册传感器的监听。

public void updateSettings() {

        ContentResolver resolver = mContext.getContentResolver();

        boolean updateRotation = false;

        synchronized (mLock) {

。。。。。。。。。


            // Configure rotation lock.

            int userRotation = Settings.System.getIntForUser(resolver,

                    Settings.System.USER_ROTATION, Surface.ROTATION_0,

                    UserHandle.USER_CURRENT);

            if (mUserRotation != userRotation) {

                mUserRotation = userRotation;

                updateRotation = true;

            }

            int userRotationMode = Settings.System.getIntForUser(resolver,

                    Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?

                            WindowManagerPolicy.USER_ROTATION_FREE :

                                    WindowManagerPolicy.USER_ROTATION_LOCKED;

            if (mUserRotationMode != userRotationMode) {

                mUserRotationMode = userRotationMode;

                updateRotation = true;

                updateOrientationListenerLp();

            }


            if (mSystemReady) {

                int pointerLocation = Settings.System.getIntForUser(resolver,

                        Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);

                if (mPointerLocationMode != pointerLocation) {

                    mPointerLocationMode = pointerLocation;

                    mHandler.sendEmptyMessage(pointerLocation != 0 ?

                            MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);

                }

            }

            // use screen off timeout setting as the timeout for the lockscreen

            mLockScreenTimeout = Settings.System.getIntForUser(resolver,

                    Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);

            String imId = Settings.Secure.getStringForUser(resolver,

                    Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);

            boolean hasSoftInput = imId != null && imId.length() > 0;

            if (mHasSoftInput != hasSoftInput) {

                mHasSoftInput = hasSoftInput;

                updateRotation = true;

            }

            if (mImmersiveModeConfirmation != null) {

                mImmersiveModeConfirmation.loadSetting(mCurrentUserId);

            }

        }

        synchronized (mWindowManagerFuncs.getWindowManagerLock()) {

            PolicyControl.reloadFromSetting(mContext);

        }

        if (updateRotation) {

            updateRotation(true);

        }

    }

C: updateOrientationListenerLp()函数多种场景下都会被调用:(注释很清楚无需解释)

(1)     screen turning off, should always disable listeners if already enabled

(2)     screen turned on and current app has sensor based orientation, enable listeners if not already enabled

(3)     screen turned on and current app does not have sensor orientation, disable listeners if already enabled

(4)     screen turning on and current app has sensor based orientation, enable listeners if needed

(5)     screen turning on and current app has nosensor based orientation, do nothing

void updateOrientationListenerLp() {

        if (!mOrientationListener.canDetectOrientation()) {

            // If sensor is turned off or nonexistent for some reason

            return;

        }

        // Could have been invoked due to screen turning on or off or

        // change of the currently visible window's orientation.

        if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly

                + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation

                + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled

                + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete

                + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);

        boolean disable = true;

        // Note: We postpone the rotating of the screen until the keyguard as well as the

        // window manager have reported a draw complete.

        if (mScreenOnEarly && mAwake &&

                mKeyguardDrawComplete && mWindowManagerDrawComplete) {

            if (needSensorRunningLp()) {

                disable = false;

                //enable listener if not already enabled

                if (!mOrientationSensorEnabled) {

                    mOrientationListener.enable();

                    if(localLOGV) Slog.v(TAG, "Enabling listeners");

                    mOrientationSensorEnabled = true;

                }

            }

        }

        //check if sensors need to be disabled

        if (disable && mOrientationSensorEnabled) {

            mOrientationListener.disable();

            if(localLOGV) Slog.v(TAG, "Disabling listeners");

            mOrientationSensorEnabled = false;

        }

    }

D: WindowOrientationListener的enable()和disable()

启动和取消传感器事件的监听,是通过调 SensorManager.registerListener()和SensorManager.unregisterListener()函数来完成的,与APP 的传感器事件的监听和取消监听用法没有区别。

/**

    * Enables the WindowOrientationListener so it will monitor the sensor and call

    * {@link #onProposedRotationChanged(int)} when the device orientation changes.

    */

    public void enable() {

        synchronized (mLock) {

            if (mSensor == null) {

                Slog.w(TAG, "Cannot detect sensors. Not enabled");

                return;

            }

            if (mEnabled == false) {

                if (LOG) {

                    Slog.d(TAG, "WindowOrientationListener enabled");

                }

                mOrientationJudge.resetLocked();

                if (mSensor.getType() == Sensor.TYPE_ACCELEROMETER) {

                    mSensorManager.registerListener(

                            mOrientationJudge, mSensor, mRate, DEFAULT_BATCH_LATENCY, mHandler);

                } else {

                    mSensorManager.registerListener(mOrientationJudge, mSensor, mRate, mHandler);

                }

                mEnabled = true;

            }

        }

    }


    /**

    * Disables the WindowOrientationListener.

    */

    public void disable() {

        synchronized (mLock) {

            if (mSensor == null) {

                Slog.w(TAG, "Cannot detect sensors. Invalid disable");

                return;

            }

            if (mEnabled == true) {

                if (LOG) {

                    Slog.d(TAG, "WindowOrientationListener disabled");

                }

                mSensorManager.unregisterListener(mOrientationJudge);

                mEnabled = false;

            }

        }

    }

2)sensor事件回调

传感器事件是通过WindowOrientationListener 的onProposedRotationChanged()接口回调到PhoneWindownManager中的,然后通过updateRotation()调用windowManagerService的updateRotation()做屏幕旋转。

首先调用PowerManagerInternal.powerHint()来提升cpu的频率来提高屏幕旋转时候的性能,然后调用WindowManager.updateRotation()做屏幕旋转,屏幕旋转的实际操作是由WindowManagerService实际来完成的。

    class MyOrientationListener extends WindowOrientationListener {

        private final Runnable mUpdateRotationRunnable = new Runnable() {

            @Override

            public void run() {

                // send interaction hint to improve redraw performance

                mPowerManagerInternal.powerHint(PowerManagerInternal.POWER_HINT_INTERACTION, 0);

                updateRotation(false);

            }

        };


        MyOrientationListener(Context context, Handler handler) {

            super(context, handler);

        }


        @Override

        public void onProposedRotationChanged(int rotation) {

            if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);

            mHandler.post(mUpdateRotationRunnable);

        }

    }

    void updateRotation(boolean alwaysSendConfiguration) {

        try {

            //set orientation on WindowManager

            mWindowManager.updateRotation(alwaysSendConfiguration, false);

        } catch (RemoteException e) {

            // Ignore

        }

    }

WindowManagerService 大致完成三件事,首先更新屏幕方向,然后具体实施屏幕旋转,最后通知AMS configuration变更。

具体实施屏幕旋转的函数是updateRotationUncheckedLocked()这部分详细旋转过程单独详细分析。

    @Override

    public void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {

        updateRotationUnchecked(alwaysSendConfiguration, forceRelayout);

    }

    public void updateRotationUnchecked(boolean alwaysSendConfiguration, boolean forceRelayout) {

        if(DEBUG_ORIENTATION) Slog.v(TAG_WM, "updateRotationUnchecked("

                  + "alwaysSendConfiguration=" + alwaysSendConfiguration + ")");


        long origId = Binder.clearCallingIdentity();

        boolean changed;

        synchronized(mWindowMap) {

            changed = updateRotationUncheckedLocked(false);

            if (!changed || forceRelayout) {

                getDefaultDisplayContentLocked().layoutNeeded = true;

                mWindowPlacerLocked.performSurfacePlacement();

            }

        }


        if (changed || alwaysSendConfiguration) {

            sendNewConfiguration();

        }


        Binder.restoreCallingIdentity(origId);

    }

  public boolean updateRotationUncheckedLocked(boolean inTransaction) {

        if (mDeferredRotationPauseCount > 0) {

            // Rotation updates have been paused temporarily.  Defer the update until

            // updates have been resumed.

            if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, rotation is paused.");

            return false;

        }


        ScreenRotationAnimation screenRotationAnimation =

                mAnimator.getScreenRotationAnimationLocked(Display.DEFAULT_DISPLAY);

        if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {

            // Rotation updates cannot be performed while the previous rotation change

            // animation is still in progress.  Skip this update.  We will try updating

            // again after the animation is finished and the display is unfrozen.

            if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, animation in progress.");

            return false;

        }

        if (mDisplayFrozen) {

            // Even if the screen rotation animation has finished (e.g. isAnimating

            // returns false), there is still some time where we haven't yet unfrozen

            // the display. We also need to abort rotation here.

            if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, still finishing previous rotation");

            return false;

        }


        if (!mDisplayEnabled) {

            // No point choosing a rotation if the display is not enabled.

            if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, display is not enabled.");

            return false;

        }


        final DisplayContent displayContent = getDefaultDisplayContentLocked();

        final WindowList windows = displayContent.getWindowList();


        final int oldRotation = mRotation;

        int rotation = mPolicy.rotationForOrientationLw(mLastOrientation, mRotation);

        boolean rotateSeamlessly = mPolicy.shouldRotateSeamlessly(oldRotation, rotation);


        if (rotateSeamlessly) {

            for (int i = windows.size() - 1; i >= 0; i--) {

                WindowState w = windows.get(i);

                // We can't rotate (seamlessly or not) while waiting for the last seamless rotation

                // to complete (that is, waiting for windows to redraw). It's tempting to check

                // w.mSeamlessRotationCount but that could be incorrect in the case of window-removal.

                if (w.mSeamlesslyRotated) {

                    return false;

                }

                // In what can only be called an unfortunate workaround we require

                // seamlessly rotated child windows to have the TRANSFORM_TO_DISPLAY_INVERSE

                // flag. Due to limitations in the client API, there is no way for

                // the client to set this flag in a race free fashion. If we seamlessly rotate

                // a window which does not have this flag, but then gains it, we will get

                // an incorrect visual result (rotated viewfinder). This means if we want to

                // support seamlessly rotating windows which could gain this flag, we can't

                // rotate windows without it. This limits seamless rotation in N to camera framework

                // users, windows without children, and native code. This is unfortunate but

                // having the camera work is our primary goal.

                if (w.isChildWindow() & w.isVisibleNow() &&

                        !w.mWinAnimator.mSurfaceController.getTransformToDisplayInverse()) {

                    rotateSeamlessly = false;

                }

            }

        }


        // TODO: Implement forced rotation changes.

        //      Set mAltOrientation to indicate that the application is receiving

        //      an orientation that has different metrics than it expected.

        //      eg. Portrait instead of Landscape.


        boolean altOrientation = !mPolicy.rotationHasCompatibleMetricsLw(

                mLastOrientation, rotation);


        if (DEBUG_ORIENTATION) {

            Slog.v(TAG_WM, "Selected orientation "

                    + mLastOrientation + ", got rotation " + rotation

                    + " which has " + (altOrientation ? "incompatible" : "compatible")

                    + " metrics");

        }


        if (mRotation == rotation && mAltOrientation == altOrientation) {

            // No change.

            return false;

        }


        if (DEBUG_ORIENTATION) {

            Slog.v(TAG_WM,

                "Rotation changed to " + rotation + (altOrientation ? " (alt)" : "")

                + " from " + mRotation + (mAltOrientation ? " (alt)" : "")

                + ", lastOrientation=" + mLastOrientation);

        }


        mRotation = rotation;

        mAltOrientation = altOrientation;

        mPolicy.setRotationLw(mRotation);


        mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_ACTIVE;

        mH.removeMessages(H.WINDOW_FREEZE_TIMEOUT);

        mH.sendEmptyMessageDelayed(H.WINDOW_FREEZE_TIMEOUT, WINDOW_FREEZE_TIMEOUT_DURATION);

        mWaitingForConfig = true;

        displayContent.layoutNeeded = true;

        final int[] anim = new int[2];

        if (displayContent.isDimming()) {

            anim[0] = anim[1] = 0;

        } else {

            mPolicy.selectRotationAnimationLw(anim);

        }


        if (!rotateSeamlessly) {

            startFreezingDisplayLocked(inTransaction, anim[0], anim[1]);

            // startFreezingDisplayLocked can reset the ScreenRotationAnimation.

            screenRotationAnimation =

                mAnimator.getScreenRotationAnimationLocked(Display.DEFAULT_DISPLAY);

        } else {

            // The screen rotation animation uses a screenshot to freeze the screen

            // while windows resize underneath.

            // When we are rotating seamlessly, we allow the elements to transition

            // to their rotated state independently and without a freeze required.

            screenRotationAnimation = null;


            // We have to reset this in case a window was removed before it

            // finished seamless rotation.

            mSeamlessRotationCount = 0;

        }


        // We need to update our screen size information to match the new rotation. If the rotation

        // has actually changed then this method will return true and, according to the comment at

        // the top of the method, the caller is obligated to call computeNewConfigurationLocked().

        // By updating the Display info here it will be available to

        // computeScreenConfigurationLocked later.

        updateDisplayAndOrientationLocked(mCurConfiguration.uiMode);


        final DisplayInfo displayInfo = displayContent.getDisplayInfo();

        if (!inTransaction) {

            if (SHOW_TRANSACTIONS) {

                Slog.i(TAG_WM, ">>> OPEN TRANSACTION setRotationUnchecked");

            }

            SurfaceControl.openTransaction();

        }

        try {

            // NOTE: We disable the rotation in the emulator because

            //      it doesn't support hardware OpenGL emulation yet.

            if (CUSTOM_SCREEN_ROTATION && screenRotationAnimation != null

                    && screenRotationAnimation.hasScreenshot()) {

                if (screenRotationAnimation.setRotationInTransaction(

                        rotation, mFxSession,

                        MAX_ANIMATION_DURATION, getTransitionAnimationScaleLocked(),

                        displayInfo.logicalWidth, displayInfo.logicalHeight)) {

                    scheduleAnimationLocked();

                }

            }


            if (rotateSeamlessly) {

                for (int i = windows.size() - 1; i >= 0; i--) {

                    WindowState w = windows.get(i);

                    w.mWinAnimator.seamlesslyRotateWindow(oldRotation, mRotation);

                }

            }


            mDisplayManagerInternal.performTraversalInTransactionFromWindowManager();

        } finally {

            if (!inTransaction) {

                SurfaceControl.closeTransaction();

                if (SHOW_LIGHT_TRANSACTIONS) {

                    Slog.i(TAG_WM, "<<< CLOSE TRANSACTION setRotationUnchecked");

                }

            }

        }


        for (int i = windows.size() - 1; i >= 0; i--) {

            WindowState w = windows.get(i);

            // Discard surface after orientation change, these can't be reused.

            if (w.mAppToken != null) {

                w.mAppToken.destroySavedSurfaces();

            }

            if (w.mHasSurface && !rotateSeamlessly) {

                if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Set mOrientationChanging of " + w);

                w.mOrientationChanging = true;

                mWindowPlacerLocked.mOrientationChangeComplete = false;

                w.mLastFreezeDuration = 0;

            }

        }

        if (rotateSeamlessly) {

            mH.removeMessages(H.SEAMLESS_ROTATION_TIMEOUT);

            mH.sendEmptyMessageDelayed(H.SEAMLESS_ROTATION_TIMEOUT, SEAMLESS_ROTATION_TIMEOUT_DURATION);

        }


        for (int i=mRotationWatchers.size()-1; i>=0; i--) {

            try {

                mRotationWatchers.get(i).watcher.onRotationChanged(rotation);

            } catch (RemoteException e) {

            }

        }


        // TODO (multidisplay): Magnification is supported only for the default display.

        // Announce rotation only if we will not animate as we already have the

        // windows in final state. Otherwise, we make this call at the rotation end.

        if (screenRotationAnimation == null && mAccessibilityController != null

                && displayContent.getDisplayId() == Display.DEFAULT_DISPLAY) {

            mAccessibilityController.onRotationChangedLocked(getDefaultDisplayContentLocked(),

                    rotation);

        }


        return true;

    }

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容