com.amaze.filemanager.fragments.BookmarksManager.java Source code

Java tutorial

Introduction

Here is the source code for com.amaze.filemanager.fragments.BookmarksManager.java

Source

/*
 * Copyright (C) 2014 Arpit Khurana <arpitkh96@gmail.com>, Vishal Nehra <vishalmeham2@gmail.com>
 *
 * This file is part of Amaze File Manager.
 *
 * Amaze File Manager 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 com.amaze.filemanager.fragments;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.AsyncTask;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.support.v4.app.Fragment;
import android.support.v4.app.ListFragment;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

import com.afollestad.materialdialogs.MaterialDialog;
import com.afollestad.materialdialogs.Theme;
import com.amaze.filemanager.R;
import com.amaze.filemanager.activities.MainActivity;
import com.amaze.filemanager.adapters.BooksAdapter;
import com.amaze.filemanager.utils.Futils;
import com.amaze.filemanager.utils.IconUtils;
import com.amaze.filemanager.utils.Shortcuts;
import com.melnykov.fab.FloatingActionButton;

import org.xml.sax.SAXException;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Calendar;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.TransformerException;

public class BookmarksManager extends Fragment {
    Futils utils = new Futils();
    Shortcuts s;
    BooksAdapter b;
    SharedPreferences Sp;
    public IconUtils icons;
    ArrayList<File> bx;
    public MainActivity m;
    int theme, theme1;
    View rootView;
    RecyclerView listview;
    Context c;
    SwipeRefreshLayout swipeRefreshLayout;
    LinearLayoutManager linearLayoutManager;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        rootView = inflater.inflate(R.layout.bookmark_frag, container, false);
        MainActivity mainActivity = (MainActivity) getActivity();
        mainActivity.toolbar.setTitle(utils.getString(getActivity(), R.string.bookmanag));
        mainActivity.tabsSpinner.setVisibility(View.GONE);
        listview = (RecyclerView) rootView.findViewById(R.id.listView);
        rootView.findViewById(R.id.buttonbarframe).setVisibility(View.GONE);
        c = getActivity();
        linearLayoutManager = new LinearLayoutManager(c);
        listview.setLayoutManager(linearLayoutManager);
        return rootView;
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        setHasOptionsMenu(false);
        setRetainInstance(false);
        s = new Shortcuts(getActivity());
        Calendar calendar = Calendar.getInstance();
        Sp = PreferenceManager.getDefaultSharedPreferences(getActivity());
        int hour = calendar.get(Calendar.HOUR_OF_DAY);
        theme = Integer.parseInt(Sp.getString("theme", "0"));
        swipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.activity_main_swipe_refresh_layout);
        swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
            @Override
            public void onRefresh() {
                refresh();
            }
        });
        theme1 = theme;
        if (theme == 2) {
            if (hour <= 6 || hour >= 18) {
                theme1 = 1;
            } else
                theme1 = 0;
        }
        if (theme1 == 1) {
            getActivity().getWindow().getDecorView().setBackgroundColor(Color.BLACK);
            listview.setBackgroundColor(Color.BLACK);
        }
        m = (MainActivity) getActivity();
        m.supportInvalidateOptionsMenu();
        Animation animation1 = AnimationUtils.loadAnimation(getActivity(), R.anim.fab_newtab);
        FloatingActionButton floatingActionButton = (FloatingActionButton) rootView.findViewById(R.id.fab);
        floatingActionButton.show(true);
        floatingActionButton.setColorNormal(Color.parseColor(((MainActivity) getActivity()).skin));
        floatingActionButton.setColorPressed(Color.parseColor(((MainActivity) getActivity()).skin));

        floatingActionButton.setAnimation(animation1);
        //getActivity().findViewById(R.id.fab).setVisibility(View.VISIBLE);
        listview.setHasFixedSize(true);
        getActivity().findViewById(R.id.fab).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                final MaterialDialog.Builder ba1 = new MaterialDialog.Builder(getActivity());
                ba1.title(utils.getString(getActivity(), R.string.addbook));
                View v = getActivity().getLayoutInflater().inflate(R.layout.dialog, null);
                final EditText edir = (EditText) v.findViewById(R.id.newname);
                edir.setHint(utils.getString(getActivity(), R.string.enterpath));
                ba1.customView(v, true);
                if (theme1 == 1)
                    ba1.theme(Theme.DARK);
                ba1.negativeText(R.string.cancel);
                ba1.positiveText(R.string.create);
                String skin = Sp.getString("skin_color", "#03A9F4");
                ba1.positiveColor(Color.parseColor(skin));
                ba1.negativeColor(Color.parseColor(skin));
                ba1.callback(new MaterialDialog.ButtonCallback() {
                    @Override
                    public void onPositive(MaterialDialog materialDialog) {
                        try {
                            File a = new File(edir.getText().toString());
                            if (a.isDirectory()) {
                                s.addS(a);
                                b.items.add(a);
                                b.notifyDataSetChanged();
                                Toast.makeText(getActivity(), utils.getString(getActivity(), R.string.success),
                                        Toast.LENGTH_LONG).show();
                            } else {
                                Toast.makeText(getActivity(), utils.getString(getActivity(), R.string.invalid_dir),
                                        Toast.LENGTH_LONG).show();
                            }
                        } catch (Exception e) {
                            // TODO Auto-generated catch block
                            Toast.makeText(getActivity(), utils.getString(getActivity(), R.string.error),
                                    Toast.LENGTH_LONG).show();
                        }
                        m.updateDrawer();
                    }

                    @Override
                    public void onNegative(MaterialDialog materialDialog) {

                    }
                });
                ba1.build().show();

            }
        });

        icons = new IconUtils(Sp, getActivity());
        if (savedInstanceState == null)
            refresh();
        else {
            bx = utils.toFileArray(savedInstanceState.getStringArrayList("bx"));
            refresh(bx);
            linearLayoutManager.scrollToPositionWithOffset(savedInstanceState.getInt("index"),
                    savedInstanceState.getInt("top"));
        }

    }

    @Override
    public void onSaveInstanceState(Bundle b) {
        super.onSaveInstanceState(b);
        if (listview != null) {
            b.putStringArrayList("bx", utils.toStringArray(bx));
            int index = linearLayoutManager.findFirstVisibleItemPosition();
            View vi = listview.getChildAt(0);
            int top = (vi == null) ? 0 : vi.getTop();
            b.putInt("index", index);
            b.putInt("top", top);
        }
    }

    public void refresh() {

        new LoadList().execute();

    }

    public class LoadList extends AsyncTask<Void, Void, ArrayList<File>> {

        public LoadList() {

        }

        @Override
        protected void onPreExecute() {
        }

        @Override
        // Actual download method, run in the task thread
        protected ArrayList<File> doInBackground(Void... params) {

            // params comes from the execute() call: params[0] is the url.
            try {

                bx = s.readS();
                if (bx == null || bx.size() == 0) {
                    s.makeS();
                    bx = s.readS();
                }
            } catch (Exception e) {
                try {
                    s.makeS();
                    bx = s.readS();
                } catch (Exception e1) {
                    e1.printStackTrace();
                }
            }
            return bx;
        }

        @Override
        // Once the image is downloaded, associates it to the imageView
        protected void onPostExecute(ArrayList<File> bitmap) {
            refresh(bitmap);
        }
    }

    public void refresh(ArrayList<File> f) {
        b = new BooksAdapter(c, R.layout.bookmarkrow, f, this);
        listview.setAdapter(b);
        swipeRefreshLayout.setRefreshing(false);
    }
}