In my main activity, onCreate I set a textView to the current date. From that activity, I startActivityForResult activity2, where I can change the date. onActivityResult, I set the textView to whatever date was returned.
Now, if you close the main activity and the textView is not the current date. The next time you open it (from the button on home screen or app drawer), I would like it to set the textView to the current date.
After it opens for the first time, the next time you open it, it doesn't hit onCreate. I've tried using onResume however this prevents activity2 onActivityResult from changing the date.