trying to open the Image Gallery so the user can pick an image via:
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
myActivity.startActivityForResult(photoPickerIntent, LoadImageIntentID);
Most devices this works great, but on the Sony Xperia S, the activity I used to wait for the "onActivityResult" event is destroyed instead of paused like every other device. What is going on?