Android Activity Lifecycle

As I have already explained what is an activity. Today I will discuss the lifecycle of the Activity and there common methods used. Android Activity lifecycle is used to identify the different states of the application such as in running state, pause state, resume state, stopped state or destroy state etc. There are some more states also their I will discuss all of them one by one.

Let’s see how Activity Lifecycle looks like:-

Android 70

As you can see in the above figure this how the activity lifecycle looks like. It contains so many states and methods. Different methods will be called during different states and perform the required tasks. We will look at all the methods and states in detail.

Leave a comment