android- OnStart never called when files come from the Gallery
what am i doing wrong here or is this a feature.
My Activity
is set up in the manifest to be recipients for images.
Gallery
and press share.
My activity start and i do stuff with the image.
Now, when long-press Home button and open my mail
and then go back to myActivity
i was expecting the
OnStart()
to be called.
It is not called.
I place breakpoints on other places a开发者_Python百科nd they work.
This Activity
does not have a .LAUNCHER
setup
It would be calling onResume check that. It essentially means that your activity is still in the memory for the second time.
精彩评论