Android - startActivityForResult immediately triggering onActivityResult

前端 未结 13 1161
感情败类
感情败类 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:20

    onActivityResult() will also pass RESULT_CANCELED as the resultCode if you misspell the package or class name in the manifest file.

提交回复
热议问题