I would like to finish an activity from inside the onCreate method. When I call finish(), onDestroy() is not immediately called, the c
onCreate
finish()
onDestroy()
It seems like finish() does not work until onCreate() return control to system. Please refer to this post: about finish() in android. You have to consider this issue if you don't want any of your code to be executed after calling finish.
onCreate()
Hope it helps.