Say I have a Fragment
and I have posted on UI handler
from background thread, a runnable to modify Fragment
before onDestroyView
of Fragment
was called.
Is the posted runnable
guaranteed to be called before onDestroyView
will be called or can onDestroyView
be called before the runnable
has a chance to execute?