AppLifecycleDemo
AppLifecycleDemo copied to clipboard
Uses ProcessLifecycleOwner to react to app coming to foreground and going to background
App Lifecycle Demo App
Medium post is here: http://proandroiddev.com/react-to-app-foreground-and-background-events-with-processlifecycleowner-96278e5816fa
Summary
This project demonstrates using the new ProcessLifecycleOwner (bundled with Lifecycle Architecture Components) to react to foreground and background events.
ProcessLifecycleOwner
provides lifecycle for the whole application process. For more details, see my post on Medium.
Use Cases
App is foregrounded. ProcessLifecycleOwner
notifies the LifecycleObserver
of Lifecycle.Event.ON_START
App is backgrounded. ProcessLifecycleOwner
notifies the LifecycleObserver
of Lifecycle.Event.ON_STOP
License
Copyright 2017 James Shvarts
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.