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...
Friday, 23 December 2016
Thursday, 22 December 2016
Wednesday, 21 December 2016
Monday, 5 September 2016
Android Mashmallow
Android Mashmallow is known as Android 6.0.
Why need Android 6.0 ?
In Android 6.0 google provide run time permission so no app can get/steal your data in background .
Earlier permission request are only at install time , but to provide more securi...