Android Application Life cycle
hello guys, thank you for having look at my tutorial first of all. Today is our first step into the android application development tutorial, Today we guys starts with the life cycle of an android application..
On create();
This is the method where the Application starts running on the device and of course the place where we insert the code that links the UI (XML PART) and JAVA part.
On start();
In this method the as the name represents the application is ready to launch.
On resume();
At this method the application is visible to thee user and starts interacting with the user.
On pause();
This method has an unique function that switching from user interface to run in background as vise versa.
On stop();
At this this method the application visibility will be gone and user interface as well.
On destroy();
As this name suggests the application will be destroyed and closed.
Thank you, we are not professionals but we want to share the knowledge in the process of learning hope you guys too...comment below if help needed in code coming days/..
Comments
Post a Comment