Android - startActivityForResult immediately triggering onActivityResult

前端 未结 13 1160
感情败类
感情败类 2020-11-27 10:54

I am launching activities from the main activity in my app using the call startActivityForResult(intent, ACTIVITY_TYPE), and they are all working but one.

13条回答
  •  渐次进展
    2020-11-27 11:28

    My problem was with the calling activity. Its declaration in the AndroidManifest had the following property:

    android:noHistory="true"
    

    Changed it to "false" and now works fine.

提交回复
热议问题