com.ne1c.rainbowmvp.base.BaseActivity.java Source code

Java tutorial

Introduction

Here is the source code for com.ne1c.rainbowmvp.base.BaseActivity.java

Source

/*
 * Copyright 2016 Nikolay Kucheriaviy
 *
 * 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.
 */

package com.ne1c.rainbowmvp.base;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.Loader;
import android.support.v7.app.AppCompatActivity;

import com.ne1c.rainbowmvp.PresenterLoader;

public abstract class BaseActivity<P extends BasePresenter> extends AppCompatActivity
        implements LoaderManager.LoaderCallbacks<P> {
    protected final int LOADER_ID = 342;

    private P mPresenter;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        getSupportLoaderManager().initLoader(LOADER_ID, null, this);
    }

    @Override
    public Loader<P> onCreateLoader(int id, Bundle args) {
        return new PresenterLoader<>(this, getPresenterTag());
    }

    @Override
    public void onLoadFinished(Loader<P> loader, P presenter) {
        mPresenter = presenter;
    }

    @Override
    public void onLoaderReset(Loader<P> loader) {
        mPresenter.onDestroy();
        mPresenter = null;
    }

    protected P getPresenter() {
        return mPresenter;
    }

    protected abstract String getPresenterTag();
}