The ActivityThread will restart a stopped activity before sending onActivityResult
When an activity starts a second fullscreen activity by calling startActivityForResult it will be stopped and any managed cursors will be deactivated. When the second activity ends the first activity will recieve onActivityResult. Earlier onActivityResult was sent to the activity before it was restarted. If the activity had any managed cursors they would still be deactivated when onActivityResult was received. Now if the activity is stopped it will be restarted before onActivityResult is sent to the activity. Change-Id: I0380a1a890e98a95137eb77e3ecd54f20f908c08
Loading
Please register or sign in to comment