com.example.android.ennis.barrett.popularmovies.MainFragment.java Source code

Java tutorial

Introduction

Here is the source code for com.example.android.ennis.barrett.popularmovies.MainFragment.java

Source

/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * 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.example.android.ennis.barrett.popularmovies;

import android.content.Context;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.preference.PreferenceManager;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.Loader;
import android.support.v4.content.CursorLoader;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.GridView;

import com.example.android.ennis.barrett.popularmovies.adapter.GridAdapter;
import com.example.android.ennis.barrett.popularmovies.data.TMDbContract;

public class MainFragment extends Fragment implements AdapterView.OnItemClickListener,
        LoaderManager.LoaderCallbacks<Cursor>, SharedPreferences.OnSharedPreferenceChangeListener {

    private static final String TAG = "popularmovies " + MainFragment.class.getSimpleName();
    private GridAdapter mAdapter;
    private static final String LOADER_BUNDLE_KEY = "thebundlekeys";
    private ListCommunicator mListener;

    /**
     * A interface for communicating with the activity
     */
    public interface ListCommunicator {

        /**
         * gets the id from the slqlite database themovies table of the selected
         * @param _id the id
         */
        public void onClicked(long _id);

    }

    /**
     * Called when a fragment is first attached to its context.
     * {@link #onCreate(Bundle)} will be called after this.
     *
     * @param context
     */
    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        mListener = (ListCommunicator) context;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        Log.v(TAG, "onCreateView started");

        View rootView = inflater.inflate(R.layout.fragment_main, container, false);
        GridView gridView = (GridView) rootView.findViewById(R.id.gridView);

        SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
        String sortBy = sharedPreferences.getString(getString(R.string.sortby_key), "-1");
        Log.d(TAG, getString(R.string.sortby_key));
        Log.d(TAG, "sortBy value: " + sortBy);
        Bundle loaderBundle = new Bundle(1);

        if (sortBy.equals("0")) {
            loaderBundle.putString(LOADER_BUNDLE_KEY, TMDbContract.Movies.IS_POPULAR);
        } else if (sortBy.equals("1")) {
            loaderBundle.putString(LOADER_BUNDLE_KEY, TMDbContract.Movies.IS_TOP_RATED);
        } else if (sortBy.equals("2")) {
            loaderBundle.putString(LOADER_BUNDLE_KEY, TMDbContract.Movies.IS_FAVORITE);
        } else {
            Log.e(TAG, "unrecognized value from shared preference");
            loaderBundle = null;
        }

        mAdapter = new GridAdapter(getActivity());
        gridView.setAdapter(mAdapter);
        gridView.setOnItemClickListener(this);

        getLoaderManager().initLoader(0, loaderBundle, this);

        Log.v(TAG, "onCreateView ended...returning rootView");
        return rootView;
    } //onCreate

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        Log.d(TAG, "onActivityCreated executed");
        super.onActivityCreated(savedInstanceState);
    }

    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        if (mListener != null) {
            mListener.onClicked(id);
        }
    }

    @Override
    public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
        Log.d(TAG, "onSharedPreferenceChanged");
        if (key.equals(getString(R.string.sortby_key))) {
            String sortBy = sharedPreferences.getString(getString(R.string.sortby_key), "-1");
            Log.d(TAG, "onSharedPreferenceChanged(). sortBy value: " + sortBy);
            Bundle loaderBundle = new Bundle(1);

            if (sortBy.equals("0")) {
                loaderBundle.putString(LOADER_BUNDLE_KEY, TMDbContract.Movies.IS_POPULAR);
            } else if (sortBy.equals("1")) {
                loaderBundle.putString(LOADER_BUNDLE_KEY, TMDbContract.Movies.IS_TOP_RATED);
            } else if (sortBy.equals("2")) {
                loaderBundle.putString(LOADER_BUNDLE_KEY, TMDbContract.Movies.IS_FAVORITE);
            } else {
                Log.e(TAG, "unrecognized value from shared preference," + sortBy);
                loaderBundle = null;
            }
            getLoaderManager().restartLoader(0, loaderBundle, this);

        } else {
            Log.e(TAG, "onSharedPreferenceChanged: case not handled. Key value: " + key);
        }
    }

    //TODO upon the addition of favorite I'll need to include a sort order in the bundle
    @Override
    public Loader<Cursor> onCreateLoader(int id, Bundle args) {
        Log.v(TAG, "onCreateLoader executed");
        switch (id) {
        case 0:
            String whereClause = null;
            String[] whereArgs = null;
            if (args != null) {
                whereClause = args.getString(LOADER_BUNDLE_KEY) + " = ?";
                whereArgs = new String[] { "1" };
            }

            return new CursorLoader(getActivity(), TMDbContract.Movies.URI, null, // projection (col to return)
                    whereClause, // where clause
                    whereArgs, // where args (values to insert in the ?)
                    null); // Sort order
        default:
            Log.v(TAG, "onCreateLoader , default case chosen");
            return null;
        }
    }

    @Override
    public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
        Log.v(TAG, "onLoadFinished executed");
        mAdapter.changeCursor(data);
    }

    @Override
    public void onLoaderReset(Loader<Cursor> loader) {
        Log.v(TAG, "onLoaderReset executed");
        mAdapter.changeCursor(null);
    }
}//end of class