android - Sony Xperia S destroys last Activity instead of pause -


trying open image gallery user can pick image via:

intent photopickerintent = new intent(intent.action_pick); photopickerintent.settype("image/*"); myactivity.startactivityforresult(photopickerintent, loadimageintentid); 

most devices works great, on sony xperia s, activity used wait "onactivityresult" event destroyed instead of paused every other device. going on?


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -