LiveData observing in Fragment
If observing from an Activity you can observe on onCreate() and use this for the LifecycleOwner as stated here: If you have a lifecycle-aware component that is hooked up to the lifecycle of your activity it will receive the ON_CREATE event. The method annotated with @OnLifecycleEvent will be called so your lifecycle-aware component can perform … Read more