mirror of
https://github.com/SimpleMobileTools/Simple-Launcher.git
synced 2025-02-16 11:31:46 +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) {
|
if (resultCode == Activity.RESULT_OK && resultData != null) {
|
||||||
val launcherApps = applicationContext.getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps
|
val launcherApps = applicationContext.getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps
|
||||||
val item = launcherApps.getPinItemRequest(resultData)
|
val item = launcherApps.getPinItemRequest(resultData)
|
||||||
item.accept()
|
if (item.accept()) {
|
||||||
val shortcutId = item.shortcutInfo?.id!!
|
val shortcutId = item.shortcutInfo?.id!!
|
||||||
val label = item.shortcutInfo.getLabel()
|
val label = item.shortcutInfo.getLabel()
|
||||||
val icon = launcherApps.getShortcutBadgedIconDrawable(item.shortcutInfo!!, resources.displayMetrics.densityDpi)
|
val icon = launcherApps.getShortcutBadgedIconDrawable(item.shortcutInfo!!, resources.displayMetrics.densityDpi)
|
||||||
mActionOnAddShortcut?.invoke(shortcutId, label, icon)
|
mActionOnAddShortcut?.invoke(shortcutId, label, icon)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user