i do have a little problem. I have a lot of different activities and from all these activities i can belong to one activity (I call it ActivityC). So if i return from ActivityC to the former Activity (ActivityB) with the Return Button, i want that former Activity to reactivate.
I guess it works with onResume() but i never tried that method before!
My question is: How do i use the onResume() Method. I mean does somebody have a little code example? The Problem is, that as soon as i return to the old activity (ActivityB), a database should be updated. I describe my problem one more time in another way. I have three different activities A,B and C. If i return from C to B nothing happens (no database is updated), but if i return from B to A and than again from A to B it works (the database is updated because B is somehow "reactivated".
I want to change this that i only need to go back from C to B to reactivate it!