My app utilises the GeoFence framework with events raised via broadcast receiver and a notification is displayed to prompt the user to "check in" if the DWELL event is fired.
Tapping this notification opens an activity to allow the user to provide more details regarding the "check in" and when submitted, the activity closes and returns back to the app home activity, which is a fragment host.
When returning back to the app home activity, the fragment which contains a history of "check ins" has not updated to show the new item added.
So, my question is, how do I update a fragment when an activity is closed that is raised by a broadcast receiver intent?
PS, I'm somewhat of a newbie when it comes to dev for Android so forgive me if I have misunderstood!