Java tutorial
/* * Copyright (C) 2014 nohana, Inc. * * 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.laevatein.internal.model; import com.amalgam.os.BundleUtils; import com.laevatein.internal.loader.AlbumLoader; import android.content.Context; import android.database.Cursor; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v4.app.LoaderManager; import android.support.v4.content.Loader; import java.lang.ref.WeakReference; /** * @author KeithYokoma * @since 2014/03/24 * @version 1.0.0 * @hide */ public class DevicePhotoAlbumCollection implements LoaderManager.LoaderCallbacks<Cursor> { private static final int LOADER_ID = 1; private static final String STATE_CURRENT_SELECTION = BundleUtils.buildKey(DevicePhotoAlbumCollection.class, "STATE_CURRENT_SELECTION"); private WeakReference<Context> mContext; private LoaderManager mLoaderManager; private DevicePhotoAlbumCallbacks mCallbacks; private int mCurrentSelection; @Override public Loader<Cursor> onCreateLoader(int id, Bundle args) { Context context = mContext.get(); if (context == null) { return null; } return new AlbumLoader(context); } @Override public void onLoadFinished(Loader<Cursor> loader, Cursor data) { Context context = mContext.get(); if (context == null) { return; } mCallbacks.onLoad(data); } @Override public void onLoaderReset(Loader<Cursor> loader) { Context context = mContext.get(); if (context == null) { return; } mCallbacks.onReset(); } public void onCreate(FragmentActivity activity, DevicePhotoAlbumCallbacks callbacks) { mContext = new WeakReference<Context>(activity); mLoaderManager = activity.getSupportLoaderManager(); mCallbacks = callbacks; } public void onRestoreInstanceState(Bundle savedInstanceState) { if (savedInstanceState == null) { return; } mCurrentSelection = savedInstanceState.getInt(STATE_CURRENT_SELECTION); } public void onSaveInstanceState(Bundle outState) { outState.putInt(STATE_CURRENT_SELECTION, mCurrentSelection); } public void onDestroy() { mLoaderManager.destroyLoader(LOADER_ID); mCallbacks = null; } public void loadAlbums() { mLoaderManager.initLoader(LOADER_ID, null, this); } public int getCurrentSelection() { return mCurrentSelection; } public void setStateCurrentSelection(int currentSelection) { mCurrentSelection = currentSelection; } public static interface DevicePhotoAlbumCallbacks { public void onLoad(Cursor cursor); public void onReset(); } }