Thursday, April 23, 2015

Android

What happens when an app is launched:


In java the entry point of an application is static void main(String args[])method. JVM locates this method after loading classes into JVM.

In the case of Android, the JVM locates the main method in the  ActivityThread. Calling this main method will invoke your application.

No comments:

Post a Comment