I have an Android Application that has four activities. None is very large and I have no threads or services.
Should I still implement the lifecycle methods, like onStart()
, onResume()
, onPause()
etc?
I tried to insert some at a suitable place, but it seems a bit unnecessary. I understand they are there to provide stability to the application, but it seems more useful when one is using many threads etc. Am I mistaken?