Background task, progress dialog, orientation change - is there any 100% working solution?

后端 未结 8 2241
半阙折子戏
半阙折子戏 2020-11-22 06:37

I download some data from internet in background thread (I use AsyncTask) and display a progress dialog while downloading. Orientation changes, Activity is rest

8条回答
  •  Happy的楠姐
    2020-11-22 07:16

    After 4 years Google solved the problem just calling setRetainInstance(true) in Activity onCreate. It will preserve your activity instance during device rotation. I have also a simple solution for older Android.

提交回复
热议问题