onActivityResult is never called in TabActivity

后端 未结 4 2089
谎友^
谎友^ 2021-01-21 17:39

I know there are tons of the same questions, but still OnActivityResult is not being called.

This is my code

Activity A:

        Intent i = new          


        
4条回答
  •  生来不讨喜
    2021-01-21 18:22

    Try below code

    Intent returnIntent = new Intent();
    returnIntent.putExtra("ProfilePicPath", path);
    setResult(RESULT_OK, returnIntent);
    finish();
    

提交回复
热议问题