Android - onLoadFinished not called

前端 未结 5 2226
谎友^
谎友^ 2021-02-14 12:03

I am facing an issue with Loader.

I have an Activity, which displays list of records retrieved from local DB. When the activity starts, records are automatically loaded

5条回答
  •  走了就别回头了
    2021-02-14 12:59

    In addition to RaB's answer, if you are using a custom Loader, make sure that if you call super if you overwrite deliverResult():

    @Override
    public void deliverResult(D data) {
        super.deliverResult(data); // <--onLoadFinished() will not be called if you don't call this
        ...
    }
    

提交回复
热议问题