Top "Onactivityresult" questions

Called when an activity you launched exits, giving you the requestCode you started it with, the resultCode it returned, and any additional data from it.

Error: onActivityResult overrides nothing

I am programming a speech recognition app in Kotlin for Android. class MainActivity : AppCompatActivity() { public override fun onCreate(savedInstanceState: Bundle?) { …

android kotlin onactivityresult
Android startActivityForResult, setResult, onActivityResult not called

I started a phone call Activity requesting for result: Intent intentcall = new Intent(); intentcall.setAction(Intent.ACTION_CALL); intentcall.setData(…

android start-activity onactivityresult
Android: setResult not returning result to Parent Activity

I have started a child activity from parent activity using startActivityForResult. After performing required functions in child activity I am …

android android-intent android-activity onactivityresult startactivityforresult
Start resolution for result in a fragment

In my app if the user doesn't have the location turned on I am prompting with a dialog and then …

android android-fragments onactivityresult