Activity in android is for GUI . If user want to use Textview, button , edit text and other ui component in android app then user has to use activity .
Activity represents user interface .
Activity LifeCycle :
Following is the flow of activity .
OnCreate
OnStart
OnResume
OnPause
OnStop
OnDestroy
OnCreate :
This is the first method call when the system create activity . In this method , we...