Android Studio – When I run my app for the first time, don't you think runTimer() method will run infinitely and so the onStart() method will never get called?
My OnStart() method should not get called because my onCreate() method will run infinitely. When OnCreate method runs, the runTimer() method gets called. This runTimer method will run infinitely because of handler.postDelayed. How is it that Android Studio is able…