Motion Layout reset on navigating between activities

前端 未结 4 808
鱼传尺愫
鱼传尺愫 2021-01-19 04:23

I am using motion layout in my mainactivity. It is working proplerly. However when I move to other activities and navigate back to my mainactivity sometimes the activity is

4条回答
  •  别那么骄傲
    2021-01-19 04:56

    You have to save/restore the progress of your MotionLayout:

        override fun onSaveInstanceState(outState: Bundle) {
            super.onSaveInstanceState(outState)
            outState.putFloat("progress", motionLayout.progress)
        }
    
        override fun onCreate(savedInstanceState: Bundle?) {
            ...
            if (savedInstanceState != null)
                motionLayout.progress = savedInstanceState.getFloat("progress", 0f)
            ...
        }
    

提交回复
热议问题