Android Interview Questions Which was the first mobile brand with Android Application? Answer : First Mobile brand with Android Application was HTC. What is the current version of android and its API ? Answer: Current version of android is “Pie” (as per Nov 2018) and its API level 28. Life cycle of Activity ? Answer: OnCreate() - This method is called when the activity is created . It is called only once in activity lifecycle. OnStart() - This method is called when the activity is getting started , no user interactions will be done at this stage,and this method will be called several times in activity life cycle depending upon the user navigation.(Loads UI) OnResume()- On this method call user can interact with the activity and perform actions like click. OnPause()- W...
Comments
Post a Comment