Example usage for android.content.pm ShortcutManager setDynamicShortcuts

List of usage examples for android.content.pm ShortcutManager setDynamicShortcuts

Introduction

In this page you can find the example usage for android.content.pm ShortcutManager setDynamicShortcuts.

Prototype

public boolean setDynamicShortcuts(@NonNull List<ShortcutInfo> shortcutInfoList) 

Source Link

Document

Publish the list of shortcuts.

Usage

From source file:de.grobox.liberario.activities.MainActivity.java

@TargetApi(Build.VERSION_CODES.N_MR1)
private void registerNougatShortcuts() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
        ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

        ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "quickhome")
                .setShortLabel(getString(R.string.widget_name_quickhome))
                .setIcon(Icon.createWithResource(getContext(), R.drawable.ic_quickhome_widget))
                .setIntent(TransportrUtils.getShortcutIntent(getContext())).build();
        shortcutManager.setDynamicShortcuts(Collections.singletonList(shortcut));
    }/*from   w ww.  java 2 s  .c  o m*/
}

From source file:io.github.runassudo.ptoffline.activities.MainActivity.java

@TargetApi(Build.VERSION_CODES.N_MR1)
private void registerNougatShortcuts() {
    int currentapiVersion = Build.VERSION.SDK_INT;
    if (currentapiVersion >= Build.VERSION_CODES.N_MR1) {
        ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

        ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "quickhome")
                .setShortLabel(getString(R.string.widget_name_quickhome))
                .setIcon(Icon.createWithResource(getContext(), R.drawable.ic_quickhome_widget))
                .setIntent(TransportrUtils.getShortcutIntent(getContext())).build();

        shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));
    }/*w w  w . jav  a 2 s  .co m*/
}

From source file:com.farmerbb.taskbar.MainActivity.java

private void proceedWithAppLaunch(Bundle savedInstanceState) {
    setContentView(R.layout.main);//from ww  w .  j av  a  2  s.c  om

    ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.setCustomView(R.layout.switch_layout);
        actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_CUSTOM);
    }

    theSwitch = (SwitchCompat) findViewById(R.id.the_switch);
    if (theSwitch != null) {
        final SharedPreferences pref = U.getSharedPreferences(this);
        theSwitch.setChecked(pref.getBoolean("taskbar_active", false));

        theSwitch.setOnCheckedChangeListener((compoundButton, b) -> {
            if (b) {
                if (U.canDrawOverlays(this)) {
                    boolean firstRun = pref.getBoolean("first_run", true);
                    startTaskbarService();

                    if (firstRun && Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && !U.isSystemApp(this)) {
                        ApplicationInfo applicationInfo = null;
                        try {
                            applicationInfo = getPackageManager().getApplicationInfo(BuildConfig.APPLICATION_ID,
                                    0);
                        } catch (PackageManager.NameNotFoundException e) {
                            /* Gracefully fail */ }

                        if (applicationInfo != null) {
                            AppOpsManager appOpsManager = (AppOpsManager) getSystemService(
                                    Context.APP_OPS_SERVICE);
                            int mode = appOpsManager.checkOpNoThrow(AppOpsManager.OPSTR_GET_USAGE_STATS,
                                    applicationInfo.uid, applicationInfo.packageName);

                            if (mode != AppOpsManager.MODE_ALLOWED) {
                                AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
                                builder.setTitle(R.string.pref_header_recent_apps)
                                        .setMessage(R.string.enable_recent_apps)
                                        .setPositiveButton(R.string.action_ok, (dialog, which) -> {
                                            try {
                                                startActivity(
                                                        new Intent(Settings.ACTION_USAGE_ACCESS_SETTINGS));
                                                U.showToastLong(MainActivity.this,
                                                        R.string.usage_stats_message);
                                            } catch (ActivityNotFoundException e) {
                                                U.showErrorDialog(MainActivity.this, "GET_USAGE_STATS");
                                            }
                                        }).setNegativeButton(R.string.action_cancel, null);

                                AlertDialog dialog = builder.create();
                                dialog.show();
                            }
                        }
                    }
                } else {
                    U.showPermissionDialog(MainActivity.this);
                    compoundButton.setChecked(false);
                }
            } else
                stopTaskbarService();
        });
    }

    if (savedInstanceState == null) {
        if (!getIntent().hasExtra("theme_change"))
            getFragmentManager().beginTransaction()
                    .replace(R.id.fragmentContainer, new AboutFragment(), "AboutFragment").commit();
        else
            getFragmentManager().beginTransaction()
                    .replace(R.id.fragmentContainer, new AppearanceFragment(), "AppearanceFragment").commit();
    }

    if (!BuildConfig.APPLICATION_ID.equals(BuildConfig.BASE_APPLICATION_ID) && freeVersionInstalled()) {
        final SharedPreferences pref = U.getSharedPreferences(this);
        if (!pref.getBoolean("dont_show_uninstall_dialog", false)) {
            AlertDialog.Builder builder = new AlertDialog.Builder(this);
            builder.setTitle(R.string.settings_imported_successfully).setMessage(R.string.import_dialog_message)
                    .setPositiveButton(R.string.action_uninstall, (dialog, which) -> {
                        pref.edit().putBoolean("uninstall_dialog_shown", true).apply();

                        try {
                            startActivity(new Intent(Intent.ACTION_DELETE,
                                    Uri.parse("package:" + BuildConfig.BASE_APPLICATION_ID)));
                        } catch (ActivityNotFoundException e) {
                            /* Gracefully fail */ }
                    });

            if (pref.getBoolean("uninstall_dialog_shown", false))
                builder.setNegativeButton(R.string.action_dont_show_again, (dialogInterface, i) -> pref.edit()
                        .putBoolean("dont_show_uninstall_dialog", true).apply());

            AlertDialog dialog = builder.create();
            dialog.show();
            dialog.setCancelable(false);
        }

        if (!pref.getBoolean("uninstall_dialog_shown", false)) {
            if (theSwitch != null)
                theSwitch.setChecked(false);

            SharedPreferences.Editor editor = pref.edit();

            String iconPack = pref.getString("icon_pack", BuildConfig.BASE_APPLICATION_ID);
            if (iconPack.contains(BuildConfig.BASE_APPLICATION_ID)) {
                editor.putString("icon_pack", BuildConfig.APPLICATION_ID);
            } else {
                U.refreshPinnedIcons(this);
            }

            editor.putBoolean("first_run", true);
            editor.apply();
        }
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
        ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

        if (shortcutManager.getDynamicShortcuts().size() == 0) {
            Intent intent = new Intent(Intent.ACTION_MAIN);
            intent.setClass(this, StartTaskbarActivity.class);
            intent.putExtra("is_launching_shortcut", true);

            ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "start_taskbar")
                    .setShortLabel(getString(R.string.start_taskbar))
                    .setIcon(Icon.createWithResource(this, R.drawable.shortcut_icon_start)).setIntent(intent)
                    .build();

            Intent intent2 = new Intent(Intent.ACTION_MAIN);
            intent2.setClass(this, ShortcutActivity.class);
            intent2.putExtra("is_launching_shortcut", true);

            ShortcutInfo shortcut2 = new ShortcutInfo.Builder(this, "freeform_mode")
                    .setShortLabel(getString(R.string.pref_header_freeform))
                    .setIcon(Icon.createWithResource(this, R.drawable.shortcut_icon_freeform))
                    .setIntent(intent2).build();

            shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut, shortcut2));
        }
    }
}

From source file:de.sindzinski.wetter.MainActivity.java

private void registerAppShortcuts() {
    ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

    Intent hourlyIntent = new Intent(this, de.sindzinski.wetter.MainActivity.class)
            .setAction(Intent.ACTION_VIEW).setData(Uri.parse("de.sindzinski.wetter.hourly"))
            .putExtra(Intent.EXTRA_TEXT, HOURLY_VIEW);

    ShortcutInfo shortcut_hourly = new ShortcutInfo.Builder(this, "id1")
            .setShortLabel(getString(R.string.hourly_weather_forcast))
            .setLongLabel(getString(R.string.hourly_weather_forcast))
            //                .setIcon(Icon.createWithResource(this, R.drawable.icon_website))
            .setIntent(hourlyIntent).build();

    Intent dailyIntent = new Intent(this, MainActivity.class).setAction(Intent.ACTION_VIEW)
            .setData(Uri.parse("de.sindzinski.wetter.daily")).putExtra(Intent.EXTRA_TEXT, DAILY_VIEW);

    ShortcutInfo shortcut_daily = new ShortcutInfo.Builder(this, "id2")
            .setShortLabel(getString(R.string.daily_weather_forcast))
            .setLongLabel(getString(R.string.daily_weather_forcast))
            //                .setIcon(Icon.createWithResource(this, R.drawable.icon_website))
            .setIntent(dailyIntent).build();

    shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut_hourly, shortcut_daily));

}

From source file:org.iota.wallet.ui.activity.MainActivity.java

private void updateDynamicShortcuts() {
    ShortcutManager shortcutManager;

    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N_MR1) {

        Intent intentGenerateQrCode = new Intent(this, MainActivity.class);
        intentGenerateQrCode.setFlags((Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK));
        intentGenerateQrCode.setAction(Constants.ACTION_GENERATE_QR_CODE);

        ShortcutInfo shortcutGenerateQrCode = new ShortcutInfo.Builder(this, SHORTCUT_ID_GENERATE_QR_CODE)
                .setShortLabel(getString(R.string.shortcut_generate_qr_code))
                .setLongLabel(getString(R.string.shortcut_generate_qr_code))
                .setIcon(Icon.createWithResource(this, R.drawable.ic_shortcut_qr))
                .setIntent(intentGenerateQrCode).build();

        Intent intentTransferIotas = new Intent(this, MainActivity.class);
        intentTransferIotas.setFlags((Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK));
        intentTransferIotas.setAction(Constants.ACTION_SEND_TRANSFER);

        ShortcutInfo shortcutTransferIotas = new ShortcutInfo.Builder(this, SHORTCUT_ID_SEND_TRANSFER)
                .setShortLabel(getString(R.string.shortcut_send_transfer))
                .setLongLabel(getString(R.string.shortcut_send_transfer))
                .setIcon(Icon.createWithResource(this, R.drawable.ic_shortcut_transaction))
                .setIntent(intentTransferIotas).build();

        shortcutManager = getSystemService(ShortcutManager.class);

        if (shortcutManager != null) {
            if (IOTA.seed != null) {
                shortcutManager
                        .setDynamicShortcuts(Arrays.asList(shortcutGenerateQrCode, shortcutTransferIotas));
                shortcutManager.enableShortcuts(
                        Arrays.asList(SHORTCUT_ID_GENERATE_QR_CODE, SHORTCUT_ID_SEND_TRANSFER));
            } else {
                // remove shortcuts if Iota.seed.isEmpty()
                shortcutManager.disableShortcuts(
                        Arrays.asList(SHORTCUT_ID_GENERATE_QR_CODE, SHORTCUT_ID_SEND_TRANSFER));
                shortcutManager.removeAllDynamicShortcuts();
            }/*from ww w.ja  va  2 s  .  co m*/
        }
    }
}

From source file:com.grarak.kerneladiutor.activities.NavigationActivity.java

private void setShortcuts() {
    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N_MR1)
        return;//from  w w  w  .  j  ava 2  s  .c om
    HashMap<Fragment, Integer> openendFragmentsCount = new HashMap<>();

    for (int id : sActualFragments.keySet()) {
        Fragment fragment = sActualFragments.get(id);
        if (fragment == null || fragment.getClass() == SettingsFragment.class)
            continue;

        int opened = Prefs.getInt(fragment.getClass().getSimpleName() + "_opened", 0, this);
        openendFragmentsCount.put(fragment, opened);
    }

    int max = 0;
    for (Map.Entry<Fragment, Integer> map : openendFragmentsCount.entrySet()) {
        if (max < map.getValue()) {
            max = map.getValue();
        }
    }

    int count = 0;
    List<ShortcutInfo> shortcutInfos = new ArrayList<>();
    ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);
    shortcutManager.removeAllDynamicShortcuts();
    for (int i = max; i >= 0; i--) {
        for (Map.Entry<Fragment, Integer> map : openendFragmentsCount.entrySet()) {
            if (i == map.getValue()) {
                NavigationFragment navFragment = getNavigationFragment(map.getKey());
                if (navFragment == null)
                    continue;

                if (count == 4)
                    break;
                count++;

                Intent intent = new Intent(this, MainActivity.class);
                intent.setAction(Intent.ACTION_VIEW);
                intent.putExtra("section", navFragment.mFragment.getClass().getCanonicalName());
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);

                ShortcutInfo shortcut = new ShortcutInfo.Builder(this,
                        navFragment.mFragment.getClass().getSimpleName())
                                .setShortLabel(getString(navFragment.mId))
                                .setLongLabel(Utils.strFormat(getString(R.string.open),
                                        getString(navFragment.mId)))
                                .setIcon(Icon.createWithResource(this,
                                        navFragment.mDrawable == 0 ? R.drawable.ic_blank
                                                : navFragment.mDrawable))
                                .setIntent(intent).build();
                shortcutInfos.add(shortcut);
            }
        }
    }
    shortcutManager.setDynamicShortcuts(shortcutInfos);
}

From source file:com.ht.app.RestaurantsActivity.java

private void setupShortucts() {

    ShortcutManager shortcutManager = null;
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
        shortcutManager = getSystemService(ShortcutManager.class);

        // Contact us
        ShortcutInfo webShortcut = null;
        String contact_us = getString(R.string.txt_contact_us);
        webShortcut = new ShortcutInfo.Builder(this, contact_us).setShortLabel(contact_us)
                .setLongLabel(contact_us).setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
                .setIntent(Utils.getComposeEmailIntent()).setRank(0).build();

        String restaurants = getString(R.string.title_activity_restaurants);
        ShortcutInfo restaurantsShortcut = new ShortcutInfo.Builder(this, restaurants)
                .setShortLabel(restaurants).setLongLabel(restaurants)
                .setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
                .setIntent(new Intent(Intent.ACTION_VIEW).setPackage("com.ht")
                        .setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK).setClass(this, this.getClass()))
                .setRank(2).build();//from ww  w.  j a va  2 s. co m

        String masjid = getString(R.string.title_activity_masjid);
        ShortcutInfo masjidsShortcut = new ShortcutInfo.Builder(this, masjid).setShortLabel(masjid)
                .setLongLabel(masjid).setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
                .setIntent(new Intent(Intent.ACTION_VIEW).setPackage("com.ht")
                        .setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK).setClass(this, MasjidActivity.class))
                .setRank(1).build();
        shortcutManager.setDynamicShortcuts(Arrays.asList(webShortcut, restaurantsShortcut, masjidsShortcut));

    }

}

From source file:com.abhinavjhanwar.android.egg.neko.NekoShortcuts.java

@TargetApi(Build.VERSION_CODES.N_MR1)
public void updateShortcuts() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
        ShortcutManager shortcutManager = mContext.getSystemService(ShortcutManager.class);

        final PrefState prefs = new PrefState(mContext);
        int currentFoodState = prefs.getFoodState();
        final List<ShortcutInfo> shortcuts = new ArrayList<>();
        final int mFoodCount = mContext.getResources().getStringArray(R.array.food_names).length;

        if (currentFoodState == 0) {
            for (int i = 1; i < mFoodCount; i++) {
                final Food food = new Food(i);

                final Intent action = new Intent(mContext, NekoLand.class).setAction(Intent.ACTION_VIEW)
                        .putExtra("action", NekoLand.SHORTCUT_ACTION_SET_FOOD).putExtra("food", i);

                final ShortcutInfo shortcut = new ShortcutInfo.Builder(mContext, "food" + i)
                        .setShortLabel(food.getName(mContext)).setLongLabel(food.getName(mContext))
                        .setIcon(Icon.createWithBitmap(getDarkIcon(mContext, food.getIcon(mContext))))
                        .setIntent(action).build();
                shortcuts.add(shortcut);
            }// w w  w .  jav a 2s .c o m
        } else {
            // Add current
            final Food currentFood = new Food(currentFoodState);
            final Intent currentActionIntent = new Intent(mContext, NekoLand.class)
                    .setAction(Intent.ACTION_VIEW).putExtra("action", NekoLand.SHORTCUT_ACTION_OPEN_SELECTOR);
            final ShortcutInfo currentFoodShortcut = new ShortcutInfo.Builder(mContext, "current")
                    .setShortLabel(currentFood.getName(mContext))
                    .setLongLabel(mContext.getString(R.string.current_dish).replace("%s",
                            currentFood.getName(mContext)))
                    .setIcon(Icon.createWithBitmap(getDarkIcon(mContext, currentFood.getIcon(mContext))))
                    .setIntent(currentActionIntent).build();
            final Intent emptyActionIntent = new Intent(mContext, NekoLand.class).setAction(Intent.ACTION_VIEW)
                    .putExtra("action", NekoLand.SHORTCUT_ACTION_SET_FOOD_EMPTY);
            final ShortcutInfo emptyFoodShortcut = new ShortcutInfo.Builder(mContext, "empty")
                    .setShortLabel(mContext.getResources().getString(R.string.empty_dish))
                    .setLongLabel(mContext.getResources().getString(R.string.empty_dish))
                    .setIcon(Icon.createWithBitmap(getDarkIcon(mContext, R.drawable.food_dish)))
                    .setIntent(emptyActionIntent).build();
            shortcuts.add(emptyFoodShortcut);
            shortcuts.add(currentFoodShortcut);
        }

        shortcutManager.setDynamicShortcuts(shortcuts);
    }
}