On Tizen Wearable, there is a flow of a general application:
- Application is started by user
- Screen turns off (timeout without activity from user),
onPause
is called - Application is put into recents => when screen turns back on again, application is not visible, but you can find it in recents
This is fine, but how can I get a notification from the system that this happened to my application?
Versus this scenario:
- Application is started by user
- Screen turns off (timeout without activity from user),
onPause
is called - Screen turns back on (activity from user): application is still visible,
onResume
called.
I want to quit from my application if it’s not visible anymore, but for this onPause
is not suitable as it’s also being called when only the screen turns off.