Android startActivityForResult, setResult, onActivityResult not called

前端 未结 1 426
清歌不尽
清歌不尽 2021-01-25 05:45

I started a phone call Activity requesting for result:

    Intent intentcall = new Intent();
intentcall.setAction(Intent.ACTION_CALL);
intentcall.setData(Uri.pa         


        
相关标签:
1条回答
  • 2021-01-25 06:16

    I don't think this action returns a result so calling startActivityForResult is no different to calling startActivity

    Note here: output = None. http://developer.android.com/reference/android/content/Intent.html#ACTION_CALL

    0 讨论(0)
提交回复
热议问题