mirror of
https://github.com/SimpleMobileTools/Simple-Launcher.git
synced 2025-02-21 05:51:08 +01:00
Pin shortcuts only on successful accept
This commit is contained in:
parent
6766e46c37
commit
b15673b8a2
@ -234,11 +234,12 @@ class MainActivity : SimpleActivity(), FlingListener {
|
||||
if (resultCode == Activity.RESULT_OK && resultData != null) {
|
||||
val launcherApps = applicationContext.getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps
|
||||
val item = launcherApps.getPinItemRequest(resultData)
|
||||
item.accept()
|
||||
val shortcutId = item.shortcutInfo?.id!!
|
||||
val label = item.shortcutInfo.getLabel()
|
||||
val icon = launcherApps.getShortcutBadgedIconDrawable(item.shortcutInfo!!, resources.displayMetrics.densityDpi)
|
||||
mActionOnAddShortcut?.invoke(shortcutId, label, icon)
|
||||
if (item.accept()) {
|
||||
val shortcutId = item.shortcutInfo?.id!!
|
||||
val label = item.shortcutInfo.getLabel()
|
||||
val icon = launcherApps.getShortcutBadgedIconDrawable(item.shortcutInfo!!, resources.displayMetrics.densityDpi)
|
||||
mActionOnAddShortcut?.invoke(shortcutId, label, icon)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user