I have an app which track user activity on app which include time etc, Now if user has opened the app, It will start an session and till user in this app , his session will cont
You need to look into Activity lifecycles on Android.
What you need is onPause - see the documentation here
I would also mention that onPause is fired even when switching between multiple activities, so you'd need to track when it's pausing to go to another screen.