I\'ve seen this in a few tutorials now... but how in the world can Android source code not have a main method and still run.
For example (from http://developer.andro
There is a main of sorts, it just happens to be out of your hands. After all, there's nothing special about a main
function in any language. It's just the entry point where your code starts executing. The Android operating system expects applications to have a certain structure and it calls your code based on the conventions you follow.