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
Handle data from several activities in one onActivityResult()?

I wonder if it's possible to handle data from e.g. activity 2 and activity 3 in activity 1 that have one onActivityResult(), …

android onactivityresult
Start Activity from Fragment using Transition (API 21 support)

I'm trying to port an Android app to the new support library (support-v4:21.0.0) and I'm having trouble starting Activities from …

android android-support-library android-5.0-lollipop onactivityresult android-transitions