What is the main thread of execution of an android app and/or activity ?
All my code has begun in onCreate, however, I want/need to know if it is possible to override the part of the app/activity that calls onCreate?
I want to put a "top most" try/catch around my activity as a catch all for all possible exceptions, instead of putting a try/catch inside every single method I override.