com.launcher.silverfish.launcher.LauncherActivity.java Source code

Java tutorial

Introduction

Here is the source code for com.launcher.silverfish.launcher.LauncherActivity.java

Source

/*
 * Copyright 2016 Stanislav Pintjuk
 * E-mail: stanislav.pintjuk@gmail.com
 *
 *
 * 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 com.launcher.silverfish.launcher;

import android.content.ClipDescription;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.DragEvent;
import android.view.KeyEvent;
import android.view.View;

import com.launcher.silverfish.R;
import com.launcher.silverfish.common.Constants;
import com.launcher.silverfish.common.Utils;
import com.launcher.silverfish.launcher.homescreen.HomeScreenFragment;
import com.launcher.silverfish.launcher.homescreen.ShortcutAddListener;
import com.launcher.silverfish.launcher.settings.SettingsScreenFragment;
import com.launcher.silverfish.shared.Settings;
import com.launcher.silverfish.sqlite.LauncherSQLiteHelper;
import com.launcher.silverfish.utils.PackagesCategories;

import java.util.HashMap;
import java.util.List;

/**
 * This is the main activity of the launcher
 */
public class LauncherActivity extends FragmentActivity implements SettingsScreenFragment.SettingChanged {

    //region Fields

    LauncherPagerAdapter mCollectionPagerAdapter;
    ViewPager mViewPager;

    // Used for telling home screen when a shortcut is added.
    private ShortcutAddListener shortcutAddListener;

    // Used when the intent is created to specify an starting page index
    public static final String START_PAGE = "start_page";

    //endregion

    //region Android lifecycle

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_pager);

        // Try creating the default tabs. This will have no effect if they already exist.
        if (createDefaultTabs())
            autoSortApplications();

        // Create the pager
        mCollectionPagerAdapter = new LauncherPagerAdapter(getSupportFragmentManager(), this);
        mViewPager = (ViewPager) findViewById(R.id.pager);
        mViewPager.setAdapter(mCollectionPagerAdapter);
        mViewPager.setCurrentItem(getIntent().getIntExtra(START_PAGE, 1));

        setDragListener();
    }

    //endregion

    //region First time setup

    private boolean createDefaultTabs() {
        LauncherSQLiteHelper sql = new LauncherSQLiteHelper((App) getApplication());
        if (sql.hasTabs())
            return false;

        // Load default names for the tab
        String[] defaultTabNames = new String[] { getString(R.string.tab_other), getString(R.string.tab_phone),
                getString(R.string.tab_games), getString(R.string.tab_internet), getString(R.string.tab_media),
                getString(R.string.tab_accessories), getString(R.string.tab_settings), };

        // Create and add the tables to the SQL database
        for (int i = 0; i < 7; i++) {
            String tab_name = defaultTabNames[i];
            sql.addTab(tab_name);
        }

        return true;
    }

    // Auto sorts the applications in their corresponding tabs
    private void autoSortApplications() {

        // Set up both SQL helper and package manager
        LauncherSQLiteHelper sql = new LauncherSQLiteHelper((App) getApplication());
        PackageManager mPacMan = getApplicationContext().getPackageManager();

        // Set MAIN and LAUNCHER filters, so we only get activities with that defined on their manifest
        Intent i = new Intent(Intent.ACTION_MAIN, null);
        i.addCategory(Intent.CATEGORY_LAUNCHER);

        // Get all activities that have those filters
        List<ResolveInfo> availableActivities = mPacMan.queryIntentActivities(i, 0);

        // Store here the packages and their categories IDs
        // This will allow us to add all the apps at once instead opening the database over and over
        HashMap<String, Long> pkg_categoryId = PackagesCategories.setCategories(getApplicationContext(),
                availableActivities);

        // Then add all the apps to their corresponding tabs at once
        sql.addAppsToTab(pkg_categoryId);
    }

    //endregion

    //region Fragment communication

    @Override
    public void onWidgetVisibilityChanged(boolean visible) {
        getHomeScreenFragment().setWidgetVisibility(visible);
    }

    @Override
    public void onWidgetChangeRequested() {
        getHomeScreenFragment().popupSelectWidget();
    }

    @Override
    public void onColorChanged(int drawerBg, int widgetBg, int fontFg) {
        // There is no need to notify the app drawer fragment that the colors changed.
        // This tab is at #0, and the settings tab is #2. Only 2 tabs (#1 and #2) are
        // kept in memory, so as soon as #0 gets created, its colors will get updated.
        getHomeScreenFragment().setWidgetColors(widgetBg, fontFg);
    }

    HomeScreenFragment getHomeScreenFragment() {
        return (HomeScreenFragment) mCollectionPagerAdapter.instantiateItem(mViewPager, 1);
    }

    public boolean addShortcut(String appName) {
        if (getFragShortcutAddListenerRefreshListener() != null) {
            getFragShortcutAddListenerRefreshListener().OnShortcutAdd(appName);
            return true;
        } else
            return false;
    }

    public void moveToScreen(int screen) {
        mViewPager.setCurrentItem(screen, true);
    }

    //endregion

    //region Listeners

    private void setDragListener() {
        mViewPager.setOnDragListener(new View.OnDragListener() {
            @Override
            public boolean onDrag(View view, DragEvent dragEvent) {
                switch (dragEvent.getAction()) {
                case DragEvent.ACTION_DRAG_STARTED:
                    // Only care about the DRAG_APP_MOVE description.
                    ClipDescription cd = dragEvent.getClipDescription();
                    if (!cd.getLabel().toString().equals(Constants.DRAG_APP_MOVE))
                        return false;
                    break;
                case DragEvent.ACTION_DRAG_ENTERED:
                    // Don't do anything
                    break;
                case DragEvent.ACTION_DRAG_LOCATION:
                    changePage(dragEvent);
                    break;
                case DragEvent.ACTION_DROP:
                    dropItem(dragEvent);
                    break;
                case DragEvent.ACTION_DRAG_ENDED:
                    // Don't do anything
                    break;

                }
                return true;
            }
        });
    }

    public ShortcutAddListener getFragShortcutAddListenerRefreshListener() {
        return shortcutAddListener;
    }

    public void setFragShortcutAddListenerRefreshListener(ShortcutAddListener shortcutAddListener) {
        this.shortcutAddListener = shortcutAddListener;
    }

    //endregion

    //region Events

    private void dropItem(DragEvent dragEvent) {
        if (mViewPager.getCurrentItem() == 1) {
            String appName = dragEvent.getClipData().getItemAt(0).getText().toString();
            addShortcut(appName);
        }
    }

    private void changePage(DragEvent dragEvent) {
        // Change page mid drag if drag is within threshold
        int threshold = Constants.SCREEN_CORNER_THRESHOLD;

        // Get display size
        int width = Utils.getScreenDimensions(this).x;

        // Change page
        if (mViewPager.getCurrentItem() == 0 && dragEvent.getX() >= width - threshold) {
            mViewPager.setCurrentItem(1);
        } else if (mViewPager.getCurrentItem() == 1 && dragEvent.getX() <= threshold) {
            mViewPager.setCurrentItem(0);
        }
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        // Override the functionality of back and home key
        if ((keyCode == KeyEvent.KEYCODE_BACK || keyCode == KeyEvent.KEYCODE_HOME) && event.getRepeatCount() == 0) {
            event.startTracking();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }

    @Override
    public boolean onKeyUp(int keyCode, KeyEvent event) {
        // Override the functionality of back and home key
        if ((keyCode == KeyEvent.KEYCODE_BACK || keyCode == KeyEvent.KEYCODE_HOME) && event.isTracking()
                && !event.isCanceled()) {
            mViewPager.setCurrentItem(1);
            return true;
        }
        return super.onKeyUp(keyCode, event);
    }

    //endregion
}