Is there anything similar to FormClosingEvent
in Xamarin.android?
I have two activities - A
and B
. B
is saving some data and is called from A
on button click. I have list of data in A
and want to automatically update it after B
activity is finished.
Any suggestions how to do it?
It sounds like you want to use
StartActivityForResult
with Activity A starting activity B in the following mannerActivityA should also then override
OnActivityResult
waiting to respond to activity B's response code and update as necessary.This is all documented quite well in Xamarin's Android documentation