I'm having trouble figuring out when surfaceDestroyed()
occurs. I am trying to make my threads stop running in the surfaceDestroyed()
method (of a SurfaceView) but it appears that my surface is never actually destroyed...can someone tell me when this happens? Or how to trigger it?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Whenever you click return or home button and leave the activity you get:
Activity onPause
surfaceDestroyed
and finally activity onDestroyed.
When you return the surfaceView is recreated, however if you have been using static variables do drive the application, they will be often preserved and it may only seem like surfaceView was not destroyed.
Regarding closing the thread, check this: Android crash when app is closed and reopened
回答2:
surfaceDestroyed()
is not called when the view is managed by a TabHost
.