是否必须从Android生命周期中删除自己作为观察者?

前端之家收集整理的这篇文章主要介绍了是否必须从Android生命周期中删除自己作为观察者?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在构建一个实现LifecycleObserver接口的Android Java类.

这是构造函数

public MyObserver(AppCompatActivity activity) {
    this.mActivity = new WeakReference

是否有必要使用以下内容调用removeObserver

@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void destroyListener() {
    if (this.mActivity.get() != null) {
        this.mActivity.get().getLifecycle().removeObserver(this);
    }
}

或者,我可以永远观察吗?

最佳答案
TL; DR:不.

根据这个link here,用户在android-lifecycles Github repo上询问了你的问题. Google开发人员对此问题的回答是:

Yes,that’s the whole point of the new lifecycle-aware components,no
need to unsubscribe/remove observers.

原文链接:https://www.f2er.com/android/430176.html

猜你在找的Android相关文章