Fix shortcut pin intent handling

This commit is contained in:
Ensar Sarajčić 2023-07-19 16:30:21 +02:00
parent 3742762220
commit 6ac3d0f86c
2 changed files with 27 additions and 16 deletions

View File

@ -101,6 +101,25 @@ class MainActivity : SimpleActivity(), FlingListener {
fragment.beVisible() fragment.beVisible()
} }
handleIntentAction(intent)
home_screen_grid.itemClickListener = {
performItemClick(it)
}
home_screen_grid.itemLongClickListener = {
performItemLongClick(home_screen_grid.getClickableRect(it).left.toFloat(), it)
}
}
override fun onNewIntent(intent: Intent?) {
super.onNewIntent(intent)
if (intent != null) {
handleIntentAction(intent)
}
}
private fun handleIntentAction(intent: Intent) {
if (intent.action == LauncherApps.ACTION_CONFIRM_PIN_SHORTCUT) { if (intent.action == LauncherApps.ACTION_CONFIRM_PIN_SHORTCUT) {
val launcherApps = applicationContext.getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps val launcherApps = applicationContext.getSystemService(Context.LAUNCHER_APPS_SERVICE) as LauncherApps
val item = launcherApps.getPinItemRequest(intent) val item = launcherApps.getPinItemRequest(intent)
@ -132,24 +151,19 @@ class MainActivity : SimpleActivity(), FlingListener {
icon icon
) )
runOnUiThread {
home_screen_grid.skipToPage(page)
}
// delay showing the shortcut both to let the user see adding it in realtime and hackily avoid concurrent modification exception at HomeScreenGrid // delay showing the shortcut both to let the user see adding it in realtime and hackily avoid concurrent modification exception at HomeScreenGrid
Thread.sleep(2000) Thread.sleep(2000)
try { try {
item.accept() item.accept()
home_screen_grid.storeAndShowGridItem(gridItem, navigateToPage = true) home_screen_grid.storeAndShowGridItem(gridItem)
} catch (ignored: IllegalStateException) { } catch (ignored: IllegalStateException) {
} }
} }
} }
home_screen_grid.itemClickListener = {
performItemClick(it)
}
home_screen_grid.itemLongClickListener = {
performItemLongClick(home_screen_grid.getClickableRect(it).left.toFloat(), it)
}
} }
private fun findFirstEmptyCell(): Pair<Int, Rect> { private fun findFirstEmptyCell(): Pair<Int, Rect> {
@ -169,7 +183,7 @@ class MainActivity : SimpleActivity(), FlingListener {
for (checkedXCell in 0 until ROW_COUNT - 1) { for (checkedXCell in 0 until ROW_COUNT - 1) {
val wantedCell = Triple(page, checkedXCell, checkedYCell) val wantedCell = Triple(page, checkedXCell, checkedYCell)
if (!occupiedCells.contains(wantedCell)) { if (!occupiedCells.contains(wantedCell)) {
return Pair(page, Rect(wantedCell.first, wantedCell.second, wantedCell.first, wantedCell.second)) return Pair(page, Rect(wantedCell.second, wantedCell.third, wantedCell.second, wantedCell.third))
} }
} }
} }

View File

@ -368,13 +368,10 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
} }
} }
fun storeAndShowGridItem(item: HomeScreenGridItem, navigateToPage: Boolean = false) { fun storeAndShowGridItem(item: HomeScreenGridItem) {
val newId = context.homeScreenGridItemsDB.insert(item) val newId = context.homeScreenGridItemsDB.insert(item)
item.id = newId item.id = newId
gridItems.add(item) gridItems.add(item)
if (navigateToPage) {
skipToPage(item.page)
}
redrawGrid() redrawGrid()
} }
@ -903,8 +900,8 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
return false return false
} }
private fun skipToPage(targetPage: Int): Boolean { fun skipToPage(targetPage: Int): Boolean {
if (targetPage < getMaxPage() + 1) { if (currentPage != targetPage && targetPage < getMaxPage() + 1) {
lastPage = currentPage lastPage = currentPage
currentPage = targetPage currentPage = targetPage
handlePageChange() handlePageChange()