I am having an activity, which has a view and when we click on this view another activity gets started.
In the second activity I am having a List View and adding data to it using an adapter. Now in the adapter I am having some options when I click on these options the current activity will be stopped and the parent activity from which this activity was started, needs to be restarted.
How can I achieve this from that adapter class, so that the current activity gets finished and the parent activity gets refreshed.
Thanks in advance !!!