I am noob in Android. Suppose I have two Activity
in my android app.
Activity
A and B, currently I am on Activity A then on click on one button I am now Activity B
. Here From Activity B I want to update some view with updated data that is in Activity A. I got updated data in Activity B so Should I use here LocalBroadCastReceiver
for this or anything ?? so that When I press back then app should show me updated data in Activity A
Should we use our custom callback here to update the UI view data of Activity A from Activity B ??