org.opensilk.music.ui3.gallery.GalleryScreenView.java Source code

Java tutorial

Introduction

Here is the source code for org.opensilk.music.ui3.gallery.GalleryScreenView.java

Source

/*
 * Copyright (c) 2014 OpenSilk Productions LLC
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.opensilk.music.ui3.gallery;

import android.content.Context;
import android.os.Parcelable;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.widget.LinearLayout;

import org.opensilk.common.core.mortar.DaggerService;
import org.opensilk.common.ui.widget.SlidingTabLayout;
import org.opensilk.music.R;

import java.util.List;

import javax.inject.Inject;

import butterknife.ButterKnife;
import butterknife.InjectView;
import timber.log.Timber;

/**
 * Created by drew on 10/3/14.
 */
public class GalleryScreenView extends LinearLayout {

    @Inject
    GalleryScreenPresenter mPresenter;

    @InjectView(R.id.tab_bar)
    SlidingTabLayout mTabBar;
    @InjectView(R.id.pager)
    ViewPager mViewPager;

    public GalleryScreenView(Context context, AttributeSet attrs) {
        super(context, attrs);
        GalleryScreenComponent component = DaggerService.getDaggerComponent(context);
        component.inject(this);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        if (!isInEditMode()) {
            ButterKnife.inject(this);
            mPresenter.takeView(this);
        }
    }

    @Override
    protected void onDetachedFromWindow() {
        Timber.v("onDetachedFromWindow()");
        super.onDetachedFromWindow();
        if (!isInEditMode()) {
            mPresenter.dropView(this);
        }
    }

    @Override
    protected Parcelable onSaveInstanceState() {
        Timber.v("onSaveInstanceState");
        return super.onSaveInstanceState();
    }

    @Override
    protected void onRestoreInstanceState(Parcelable state) {
        Timber.v("onRestoreInstanceState");
        super.onRestoreInstanceState(state);
    }

    public void setup(List<GalleryPage> pages, int startPage) {
        GalleryScreenViewAdapter adapter = new GalleryScreenViewAdapter(getContext(), mPresenter, pages);
        mViewPager.setAdapter(adapter);
        mTabBar.setViewPager(mViewPager);
        mViewPager.setCurrentItem(startPage);
    }

}