Android 架构组件(architecture components)(1)

Android 架构组件(architecture components)(1)_第1张图片

在 android 开发过程中,我们少不了接触到 Activity 和 fragment 的生命周期。我经历两次 Android 的面试,都被问一些有关生命周期的相关问题。

Android 架构组件(architecture components)(1)_第2张图片

如果您用到的服务或组件与 Activity 的生命周期相关,就需要 Activity 的不同阶段进行对其相应的处理,例如在应用可能会用到百度地图,我们就需要 resume 时调用 mapView.resume() ,而在 mapView.pause()。例如像 MVP 设计模式中,在 presenter 中有视图 Activity 的引用,也需要在 Activity 的 onDestroy 阶段需要销毁 presenter 或接触 presenter 对 Activity 的引用

Android 架构组件(architecture components)(1)_第3张图片

我们在 onCreate 阶段创建 myLocationListener , 在监听器的回调中我们能够获取地理位置 Location 的信息。

Android 架构组件(architecture components)(1)_第4张图片

可以 onStart 启动 myLocationListener 监听,而在 onStop 停止监听。

Android 架构组件(architecture components)(1)_第5张图片

如果我们需要在确认用户已经登录的情况下,才可以启动 myLocationListener 才能享受获取地理位置的服务。

Android 架构组件(architecture components)(1)_第6张图片
Android 架构组件(architecture components)(1)_第7张图片
Android 架构组件(architecture components)(1)_第8张图片

我们检查一下用户的状态,如果登录我们才可以启动位置监听。如果就在这个关键的时刻,也就是无巧不成书,我们旋转了手机,那么也我们 configuration  发生了变化。

Android 架构组件(architecture components)(1)_第9张图片

旋转后我们又启动了一个 Activity,而这时候 checkUserStatus 是异步的,就立刻执行了 onStop 来停止 myLocationListener 的服务,其实这时候我们的 myLocationListener 还没有被启动

Android 架构组件(architecture components)(1)_第10张图片

这样以来导致 myLocationListener.stop() 先于  myLocationListener.start() 被执行,也就是我们服务没有被停止而是一直在跑着。

Android 架构组件(architecture components)(1)_第11张图片

问题来了,我们就要解决问题,我们需要让 MyLocation 这个类来自己管理自己就好了,这让我们在多个 Activity 也便于我们管理 MyLocationListener。要实现我们需要做两件事,首先让我们的 Activity 继承 LifecycleActivity。LifecycleActivity 需要实现 LifecycleOwner,就是让我们 Activity 可以提供出一个 Lifecycle 的对象。第二件事,就是让我们 MyLocationListener 可以检测到 Lifecycle 的变化。

Android 架构组件(architecture components)(1)_第12张图片

继承 LifecycleActivity 类,我们就有了可以获取 Lifecycle 的 getLifecycle 的方法。我们就可以将 lifecycle 传递给 MyLocationListener。

Android 架构组件(architecture components)(1)_第13张图片

同样我们也可以 lifecycle 传递给 checkUserStatus 这个方法,让他也监听 lifecycle 的变化。

Android 架构组件(architecture components)(1)_第14张图片

我们看一看对 MyLocationListener 这个类的改造吧,enable 表示我们是否启动监听,这个由用户的状态来决定的。然后这里又两个属性分别为 lifecycle 对象和回调 Callback。

Android 架构组件(architecture components)(1)_第15张图片

有了 lifecycle 我们就可以把自己注册进去,当 lifecycle 走到那个阶段,就会调用这个类的注册的对应方法,好接下来就给大家介绍,如何写方法以便 lifecycle 可以在不同阶段进行对该方法的调用呢。

Android 架构组件(architecture components)(1)_第16张图片

这个通过 Lifecycle.getState 我们可以检测当前 Lifecycle 的状态,也就是走到那个阶段了。这样就可以避免在分享开始发生的问题,isAtLeast  ,如果是其他阶段就不会调用了。

Android 架构组件(architecture components)(1)_第17张图片
Android 架构组件(architecture components)(1)_第18张图片
让我们

通过注解@OnLifecycleEvent 我们就可以得到 Lifecycle 各个阶段回调,ON_START 等于 onStart

Android 架构组件(architecture components)(1)_第19张图片
Android 架构组件(architecture components)(1)_第20张图片

我们也可以解除对 lifecycle 的监听。

Android 架构组件(architecture components)(1)_第21张图片

这样我们的代码就清晰明了,我们只需要在 onCreate 初始化一下 MyLocationListener 这个类就行。

Android 架构组件(architecture components)(1)_第22张图片
图以来

我们就无需在 Activity 中来一个一个地实现 onXXX 的回调方法了,这样的好处我们不容易漏掉 MyLocationListener 在各个阶段的处理。

Android 架构组件(architecture components)(1)_第23张图片

你可能感兴趣的:(Android 架构组件(architecture components)(1))