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

后端 未结 8 2140
半阙折子戏
半阙折子戏 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条回答
  •  悲哀的现实
    2020-11-22 07:39

    you should call all activity actions using activity handler. So if you are in some thread you should create a Runnable and posted using Activitie's Handler. Otherwise your app will crash sometimes with fatal exception.

提交回复
热议问题