Here is the android life cycle:

If you call another application in multi-window mode, your application is still "partially visible", so onPause() is called, but onStop() not.
When restarting, it is the same: onResume() is called, but onStart() not.
Bobby source share