From 1d877ff5bdc06c021de94a22bda4cf9f9ef57763 Mon Sep 17 00:00:00 2001 From: tibbi Date: Thu, 7 Mar 2019 20:28:51 +0100 Subject: [PATCH] adding a shortcut for creating new contacts too --- .../contacts/pro/activities/MainActivity.kt | 53 +++++++++++++------ app/src/main/res/drawable/shortcut_plus.xml | 16 ++++++ 2 files changed, 54 insertions(+), 15 deletions(-) create mode 100644 app/src/main/res/drawable/shortcut_plus.xml diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/MainActivity.kt index 68d17f48..c800556c 100644 --- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/MainActivity.kt @@ -254,26 +254,49 @@ class MainActivity : SimpleActivity(), RefreshContactsListener { private fun checkShortcuts() { val appIconColor = config.appIconColor if (isNougatMR1Plus() && config.lastHandledShortcutColor != appIconColor) { - val newEvent = getString(R.string.dialpad) + val launchDialpad = getLaunchDialpadShortcut(appIconColor) + val createNewContact = getCreateNewContactShortcut(appIconColor) + val manager = getSystemService(ShortcutManager::class.java) - val drawable = resources.getDrawable(R.drawable.shortcut_dialpad) - (drawable as LayerDrawable).findDrawableByLayerId(R.id.shortcut_dialpad_background).applyColorFilter(appIconColor) - val bmp = drawable.convertToBitmap() - - val intent = Intent(this, DialpadActivity::class.java) - intent.action = Intent.ACTION_VIEW - val shortcut = ShortcutInfo.Builder(this, "launch_dialpad") - .setShortLabel(newEvent) - .setLongLabel(newEvent) - .setIcon(Icon.createWithBitmap(bmp)) - .setIntent(intent) - .build() - - manager.dynamicShortcuts = Arrays.asList(shortcut) + manager.dynamicShortcuts = Arrays.asList(launchDialpad, createNewContact) config.lastHandledShortcutColor = appIconColor } } + @SuppressLint("NewApi") + private fun getLaunchDialpadShortcut(appIconColor: Int): ShortcutInfo { + val newEvent = getString(R.string.dialpad) + val drawable = resources.getDrawable(R.drawable.shortcut_dialpad) + (drawable as LayerDrawable).findDrawableByLayerId(R.id.shortcut_dialpad_background).applyColorFilter(appIconColor) + val bmp = drawable.convertToBitmap() + + val intent = Intent(this, DialpadActivity::class.java) + intent.action = Intent.ACTION_VIEW + return ShortcutInfo.Builder(this, "launch_dialpad") + .setShortLabel(newEvent) + .setLongLabel(newEvent) + .setIcon(Icon.createWithBitmap(bmp)) + .setIntent(intent) + .build() + } + + @SuppressLint("NewApi") + private fun getCreateNewContactShortcut(appIconColor: Int): ShortcutInfo { + val newEvent = getString(R.string.create_new_contact) + val drawable = resources.getDrawable(R.drawable.shortcut_plus) + (drawable as LayerDrawable).findDrawableByLayerId(R.id.shortcut_plus_background).applyColorFilter(appIconColor) + val bmp = drawable.convertToBitmap() + + val intent = Intent(this, EditContactActivity::class.java) + intent.action = Intent.ACTION_VIEW + return ShortcutInfo.Builder(this, "create_new_contact") + .setShortLabel(newEvent) + .setLongLabel(newEvent) + .setIcon(Icon.createWithBitmap(bmp)) + .setIntent(intent) + .build() + } + private fun getCurrentFragment(): MyViewPagerFragment? { val showTabs = config.showTabs val fragments = arrayListOf() diff --git a/app/src/main/res/drawable/shortcut_plus.xml b/app/src/main/res/drawable/shortcut_plus.xml new file mode 100644 index 00000000..88e18138 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_plus.xml @@ -0,0 +1,16 @@ + + + + + + + + + + +