Which Activity lifecycle callback runs when the Activity is created and should inflate the layout?
- A onCreate()
- B onStart()
- C onResume()
- D onDestroy()
Answer
onCreate()
onCreate runs once per instance. onResume is where camera, sensors and location updates should start, since the Activity is then interactive.





