Merge pull request #140 from esensar/fix/crashes
Fix various crashes and general issues
This commit is contained in:
commit
7b1b083f7f
|
@ -13,7 +13,6 @@ import android.content.Intent
|
||||||
import android.content.pm.ActivityInfo
|
import android.content.pm.ActivityInfo
|
||||||
import android.content.pm.LauncherApps
|
import android.content.pm.LauncherApps
|
||||||
import android.content.pm.PackageManager
|
import android.content.pm.PackageManager
|
||||||
import android.content.pm.ShortcutInfo
|
|
||||||
import android.content.res.Configuration
|
import android.content.res.Configuration
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
import android.graphics.Color
|
import android.graphics.Color
|
||||||
|
@ -52,6 +51,7 @@ import com.simplemobiletools.launcher.interfaces.ItemMenuListener
|
||||||
import com.simplemobiletools.launcher.models.AppLauncher
|
import com.simplemobiletools.launcher.models.AppLauncher
|
||||||
import com.simplemobiletools.launcher.models.HiddenIcon
|
import com.simplemobiletools.launcher.models.HiddenIcon
|
||||||
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
||||||
|
import kotlinx.collections.immutable.toImmutableList
|
||||||
import kotlin.math.abs
|
import kotlin.math.abs
|
||||||
|
|
||||||
class MainActivity : SimpleActivity(), FlingListener {
|
class MainActivity : SimpleActivity(), FlingListener {
|
||||||
|
@ -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)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -404,9 +405,9 @@ class MainActivity : SimpleActivity(), FlingListener {
|
||||||
|
|
||||||
private fun findFirstEmptyCell(): Pair<Int, Rect> {
|
private fun findFirstEmptyCell(): Pair<Int, Rect> {
|
||||||
val gridItems = homeScreenGridItemsDB.getAllItems() as ArrayList<HomeScreenGridItem>
|
val gridItems = homeScreenGridItemsDB.getAllItems() as ArrayList<HomeScreenGridItem>
|
||||||
val maxPage = gridItems.map { it.page }.max()
|
val maxPage = gridItems.maxOf { it.page }
|
||||||
val occupiedCells = ArrayList<Triple<Int, Int, Int>>()
|
val occupiedCells = ArrayList<Triple<Int, Int, Int>>()
|
||||||
gridItems.forEach { item ->
|
gridItems.toImmutableList().filter { it.parentId == null }.forEach { item ->
|
||||||
for (xCell in item.left..item.right) {
|
for (xCell in item.left..item.right) {
|
||||||
for (yCell in item.top..item.bottom) {
|
for (yCell in item.top..item.bottom) {
|
||||||
occupiedCells.add(Triple(item.page, xCell, yCell))
|
occupiedCells.add(Triple(item.page, xCell, yCell))
|
||||||
|
|
|
@ -55,8 +55,12 @@ class WidgetsFragment(context: Context, attributeSet: AttributeSet) : MyFragment
|
||||||
binding.widgetsList.scrollToPosition(0)
|
binding.widgetsList.scrollToPosition(0)
|
||||||
setupViews()
|
setupViews()
|
||||||
|
|
||||||
val appWidgets = (binding.widgetsList.adapter as WidgetsAdapter).widgetListItems
|
val appWidgets = (binding.widgetsList.adapter as? WidgetsAdapter)?.widgetListItems
|
||||||
setupAdapter(appWidgets)
|
if (appWidgets != null) {
|
||||||
|
setupAdapter(appWidgets)
|
||||||
|
} else {
|
||||||
|
getAppWidgets()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onInterceptTouchEvent(event: MotionEvent?): Boolean {
|
override fun onInterceptTouchEvent(event: MotionEvent?): Boolean {
|
||||||
|
|
|
@ -26,6 +26,7 @@ import android.view.animation.OvershootInterpolator
|
||||||
import android.widget.RelativeLayout
|
import android.widget.RelativeLayout
|
||||||
import androidx.core.graphics.drawable.toBitmap
|
import androidx.core.graphics.drawable.toBitmap
|
||||||
import androidx.core.graphics.drawable.toDrawable
|
import androidx.core.graphics.drawable.toDrawable
|
||||||
|
import androidx.core.graphics.toRect
|
||||||
import androidx.core.graphics.withScale
|
import androidx.core.graphics.withScale
|
||||||
import androidx.core.graphics.withTranslation
|
import androidx.core.graphics.withTranslation
|
||||||
import androidx.core.view.ViewCompat
|
import androidx.core.view.ViewCompat
|
||||||
|
@ -42,6 +43,7 @@ import com.simplemobiletools.launcher.extensions.getDrawableForPackageName
|
||||||
import com.simplemobiletools.launcher.extensions.homeScreenGridItemsDB
|
import com.simplemobiletools.launcher.extensions.homeScreenGridItemsDB
|
||||||
import com.simplemobiletools.launcher.helpers.*
|
import com.simplemobiletools.launcher.helpers.*
|
||||||
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
||||||
|
import kotlinx.collections.immutable.toImmutableList
|
||||||
import kotlin.math.*
|
import kotlin.math.*
|
||||||
|
|
||||||
class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : RelativeLayout(context, attrs, defStyle) {
|
class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : RelativeLayout(context, attrs, defStyle) {
|
||||||
|
@ -87,6 +89,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
pageChangeStarted = {
|
pageChangeStarted = {
|
||||||
widgetViews.forEach { it.resetTouches() }
|
widgetViews.forEach { it.resetTouches() }
|
||||||
closeFolder()
|
closeFolder()
|
||||||
|
accessibilityHelper.invalidateRoot()
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -105,12 +108,13 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
val appWidgetHost = MyAppWidgetHost(context, WIDGET_HOST_ID)
|
val appWidgetHost = MyAppWidgetHost(context, WIDGET_HOST_ID)
|
||||||
private val appWidgetManager = AppWidgetManager.getInstance(context)
|
private val appWidgetManager = AppWidgetManager.getInstance(context)
|
||||||
|
|
||||||
|
private val accessibilityHelper = HomeScreenGridTouchHelper(this)
|
||||||
var itemClickListener: ((HomeScreenGridItem) -> Unit)? = null
|
var itemClickListener: ((HomeScreenGridItem) -> Unit)? = null
|
||||||
var itemLongClickListener: ((HomeScreenGridItem) -> Unit)? = null
|
var itemLongClickListener: ((HomeScreenGridItem) -> Unit)? = null
|
||||||
|
|
||||||
|
|
||||||
init {
|
init {
|
||||||
ViewCompat.setAccessibilityDelegate(this, HomeScreenGridTouchHelper(this))
|
ViewCompat.setAccessibilityDelegate(this, accessibilityHelper)
|
||||||
|
|
||||||
textPaint = TextPaint(Paint.ANTI_ALIAS_FLAG).apply {
|
textPaint = TextPaint(Paint.ANTI_ALIAS_FLAG).apply {
|
||||||
color = Color.WHITE
|
color = Color.WHITE
|
||||||
|
@ -179,7 +183,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
val providers = appWidgetManager.installedProviders
|
val providers = appWidgetManager.installedProviders
|
||||||
gridItems = context.homeScreenGridItemsDB.getAllItems() as ArrayList<HomeScreenGridItem>
|
gridItems = context.homeScreenGridItemsDB.getAllItems() as ArrayList<HomeScreenGridItem>
|
||||||
gridItems.forEach { item ->
|
gridItems.toImmutableList().forEach { item ->
|
||||||
if (item.type == ITEM_TYPE_ICON) {
|
if (item.type == ITEM_TYPE_ICON) {
|
||||||
item.drawable = context.getDrawableForPackageName(item.packageName)
|
item.drawable = context.getDrawableForPackageName(item.packageName)
|
||||||
} else if (item.type == ITEM_TYPE_FOLDER) {
|
} else if (item.type == ITEM_TYPE_FOLDER) {
|
||||||
|
@ -241,6 +245,13 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
if (item.id != null) {
|
if (item.id != null) {
|
||||||
context.homeScreenGridItemsDB.deleteById(item.id!!)
|
context.homeScreenGridItemsDB.deleteById(item.id!!)
|
||||||
|
if (item.parentId != null) {
|
||||||
|
gridItems.filter { it.parentId == item.parentId && it.left > item.left && it.id != item.id }.forEach {
|
||||||
|
it.left -= 1
|
||||||
|
}
|
||||||
|
|
||||||
|
context.homeScreenGridItemsDB.shiftFolderItems(item.parentId!!, item.left, -1, item.id)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.type == ITEM_TYPE_WIDGET) {
|
if (item.type == ITEM_TYPE_WIDGET) {
|
||||||
|
@ -682,9 +693,20 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
draggedItem!!.activityInfo
|
draggedItem!!.activityInfo
|
||||||
)
|
)
|
||||||
|
|
||||||
|
fun finalizeFolderOrder(newItem: HomeScreenGridItem) {
|
||||||
|
if (newParentId != null && gridItems.any { it.parentId == newParentId && it.left == newItem.left }) {
|
||||||
|
gridItems.filter { it.parentId == newParentId && it.left >= newItem.left && it.id != newItem.id}.forEach {
|
||||||
|
it.left += 1
|
||||||
|
}
|
||||||
|
|
||||||
|
context.homeScreenGridItemsDB.shiftFolderItems(newParentId, newItem.left - 1, +1, newItem.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (newHomeScreenGridItem.type == ITEM_TYPE_ICON) {
|
if (newHomeScreenGridItem.type == ITEM_TYPE_ICON) {
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
storeAndShowGridItem(newHomeScreenGridItem)
|
storeAndShowGridItem(newHomeScreenGridItem)
|
||||||
|
finalizeFolderOrder(newHomeScreenGridItem)
|
||||||
}
|
}
|
||||||
} else if (newHomeScreenGridItem.type == ITEM_TYPE_SHORTCUT) {
|
} else if (newHomeScreenGridItem.type == ITEM_TYPE_SHORTCUT) {
|
||||||
(context as? MainActivity)?.handleShorcutCreation(newHomeScreenGridItem.activityInfo!!) { shortcutId, label, icon ->
|
(context as? MainActivity)?.handleShorcutCreation(newHomeScreenGridItem.activityInfo!!) { shortcutId, label, icon ->
|
||||||
|
@ -694,19 +716,10 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
newHomeScreenGridItem.icon = icon.toBitmap()
|
newHomeScreenGridItem.icon = icon.toBitmap()
|
||||||
newHomeScreenGridItem.drawable = icon
|
newHomeScreenGridItem.drawable = icon
|
||||||
storeAndShowGridItem(newHomeScreenGridItem)
|
storeAndShowGridItem(newHomeScreenGridItem)
|
||||||
|
finalizeFolderOrder(newHomeScreenGridItem)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ensureBackgroundThread {
|
|
||||||
if (newParentId != null && gridItems.any { it.parentId == newParentId && it.left == finalXIndex }) {
|
|
||||||
gridItems.filter { it.parentId == newParentId && it.left >= finalXIndex }.forEach {
|
|
||||||
it.left += 1
|
|
||||||
}
|
|
||||||
|
|
||||||
context.homeScreenGridItemsDB.shiftFolderItems(newParentId, left - 1, +1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
draggedItem = null
|
draggedItem = null
|
||||||
|
@ -1052,7 +1065,6 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
|
|
||||||
items.forEach { item ->
|
items.forEach { item ->
|
||||||
val itemRect = folder.getItemRect(item)
|
val itemRect = folder.getItemRect(item)
|
||||||
// canvas.drawRect(itemRect, contrastTextPaint)
|
|
||||||
canvas.drawItemInCell(item, itemRect)
|
canvas.drawItemInCell(item, itemRect)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1098,8 +1110,9 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
// show the app icon itself at dragging, move it above the finger a bit to make it visible
|
// show the app icon itself at dragging, move it above the finger a bit to make it visible
|
||||||
val drawableX = (draggedItemCurrentCoords.first - iconSize / 1.5f).toInt()
|
val drawableX = (draggedItemCurrentCoords.first - iconSize / 1.5f).toInt()
|
||||||
val drawableY = (draggedItemCurrentCoords.second - iconSize / 1.2f).toInt()
|
val drawableY = (draggedItemCurrentCoords.second - iconSize / 1.2f).toInt()
|
||||||
draggedItem!!.drawable!!.setBounds(drawableX, drawableY, drawableX + iconSize, drawableY + iconSize)
|
val newDrawable = draggedItem!!.drawable?.constantState?.newDrawable()?.mutate()
|
||||||
draggedItem!!.drawable!!.draw(canvas)
|
newDrawable?.setBounds(drawableX, drawableY, drawableX + iconSize, drawableY + iconSize)
|
||||||
|
newDrawable?.draw(canvas)
|
||||||
} else if (draggedItem!!.type == ITEM_TYPE_WIDGET) {
|
} else if (draggedItem!!.type == ITEM_TYPE_WIDGET) {
|
||||||
// at first draw we are loading the widget from the database at some exact spot, not dragging it
|
// at first draw we are loading the widget from the database at some exact spot, not dragging it
|
||||||
if (!isFirstDraw) {
|
if (!isFirstDraw) {
|
||||||
|
@ -1119,18 +1132,19 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
}
|
}
|
||||||
|
|
||||||
// show the widget preview itself at dragging
|
// show the widget preview itself at dragging
|
||||||
val drawable = draggedItem!!.drawable!!
|
draggedItem!!.drawable?.also { drawable ->
|
||||||
val aspectRatio = drawable.minimumHeight / drawable.minimumWidth.toFloat()
|
val aspectRatio = drawable.minimumHeight / drawable.minimumWidth.toFloat()
|
||||||
val drawableX = (draggedItemCurrentCoords.first - drawable.minimumWidth / 2f).toInt()
|
val drawableX = (draggedItemCurrentCoords.first - drawable.minimumWidth / 2f).toInt()
|
||||||
val drawableY = (draggedItemCurrentCoords.second - drawable.minimumHeight / 3f).toInt()
|
val drawableY = (draggedItemCurrentCoords.second - drawable.minimumHeight / 3f).toInt()
|
||||||
val drawableWidth = draggedItem!!.getWidthInCells() * cellWidth - iconMargin * (draggedItem!!.getWidthInCells() - 1)
|
val drawableWidth = draggedItem!!.getWidthInCells() * cellWidth - iconMargin * (draggedItem!!.getWidthInCells() - 1)
|
||||||
drawable.setBounds(
|
drawable.setBounds(
|
||||||
drawableX,
|
drawableX,
|
||||||
drawableY,
|
drawableY,
|
||||||
drawableX + drawableWidth,
|
drawableX + drawableWidth,
|
||||||
(drawableY + drawableWidth * aspectRatio).toInt()
|
(drawableY + drawableWidth * aspectRatio).toInt()
|
||||||
)
|
)
|
||||||
drawable.draw(canvas)
|
drawable.draw(canvas)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1299,8 +1313,8 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getVisibleVirtualViews(virtualViewIds: MutableList<Int>?) {
|
override fun getVisibleVirtualViews(virtualViewIds: MutableList<Int>?) {
|
||||||
val sorted = gridItems.sortedBy {
|
val sorted = gridItems.filter { it.visibleOnCurrentPage() || (currentlyOpenFolder != null && it.parentId == currentlyOpenFolder?.item?.id) }.sortedBy {
|
||||||
it.getDockAdjustedTop(rowCount) * 100 + it.left
|
(if (it.parentId == null) it.getDockAdjustedTop(rowCount) else 1) * 100 + it.left
|
||||||
}
|
}
|
||||||
sorted.forEachIndexed { index, homeScreenGridItem ->
|
sorted.forEachIndexed { index, homeScreenGridItem ->
|
||||||
virtualViewIds?.add(index, homeScreenGridItem.id?.toInt() ?: index)
|
virtualViewIds?.add(index, homeScreenGridItem.id?.toInt() ?: index)
|
||||||
|
@ -1308,14 +1322,44 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onPopulateNodeForVirtualView(virtualViewId: Int, node: AccessibilityNodeInfoCompat) {
|
override fun onPopulateNodeForVirtualView(virtualViewId: Int, node: AccessibilityNodeInfoCompat) {
|
||||||
val item = gridItems.firstOrNull { it.id?.toInt() == virtualViewId } ?: throw IllegalArgumentException("Unknown id")
|
|
||||||
|
|
||||||
node.text = item.title
|
|
||||||
|
|
||||||
val viewLocation = IntArray(2)
|
val viewLocation = IntArray(2)
|
||||||
getLocationOnScreen(viewLocation)
|
getLocationOnScreen(viewLocation)
|
||||||
|
|
||||||
val viewBounds = getClickableRect(item)
|
// home screen
|
||||||
|
if (virtualViewId == -1) {
|
||||||
|
node.text = context.getString(R.string.app_name)
|
||||||
|
val viewBounds = Rect(left, top, right, bottom)
|
||||||
|
val onScreenBounds = Rect(viewBounds)
|
||||||
|
onScreenBounds.offset(viewLocation[0], viewLocation[1])
|
||||||
|
node.setBoundsInScreen(onScreenBounds)
|
||||||
|
node.setBoundsInParent(viewBounds)
|
||||||
|
|
||||||
|
node.addAction(AccessibilityNodeInfoCompat.ACTION_CLICK)
|
||||||
|
node.addAction(AccessibilityNodeInfoCompat.ACTION_LONG_CLICK)
|
||||||
|
node.setParent(this@HomeScreenGrid)
|
||||||
|
}
|
||||||
|
|
||||||
|
val item = gridItems.firstOrNull { it.id?.toInt() == virtualViewId } ?: throw IllegalArgumentException("Unknown id")
|
||||||
|
|
||||||
|
node.text = if (item.type == ITEM_TYPE_WIDGET) {
|
||||||
|
item.providerInfo?.loadLabel(context.packageManager) ?: item.title
|
||||||
|
} else {
|
||||||
|
item.title
|
||||||
|
}
|
||||||
|
|
||||||
|
val viewBounds = if (item == currentlyOpenFolder?.item) {
|
||||||
|
currentlyOpenFolder?.getDrawingRect()?.toRect()
|
||||||
|
} else if (item.type == ITEM_TYPE_WIDGET) {
|
||||||
|
val widgetPos = calculateWidgetPos(item.getTopLeft())
|
||||||
|
val left = widgetPos.x
|
||||||
|
val top = widgetPos.y
|
||||||
|
val right = left + item.getWidthInCells() * cellWidth
|
||||||
|
val bottom = top + item.getHeightInCells() * cellHeight
|
||||||
|
|
||||||
|
Rect(left, top, right, bottom)
|
||||||
|
} else {
|
||||||
|
getClickableRect(item)
|
||||||
|
}
|
||||||
val onScreenBounds = Rect(viewBounds)
|
val onScreenBounds = Rect(viewBounds)
|
||||||
onScreenBounds.offset(viewLocation[0], viewLocation[1])
|
onScreenBounds.offset(viewLocation[0], viewLocation[1])
|
||||||
node.setBoundsInScreen(onScreenBounds)
|
node.setBoundsInScreen(onScreenBounds)
|
||||||
|
@ -1330,7 +1374,11 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
val item = gridItems.firstOrNull { it.id?.toInt() == virtualViewId } ?: throw IllegalArgumentException("Unknown id")
|
val item = gridItems.firstOrNull { it.id?.toInt() == virtualViewId } ?: throw IllegalArgumentException("Unknown id")
|
||||||
when (action) {
|
when (action) {
|
||||||
AccessibilityNodeInfoCompat.ACTION_CLICK -> itemClickListener?.apply {
|
AccessibilityNodeInfoCompat.ACTION_CLICK -> itemClickListener?.apply {
|
||||||
invoke(item)
|
if (item == currentlyOpenFolder?.item) {
|
||||||
|
closeFolder(true)
|
||||||
|
} else {
|
||||||
|
invoke(item)
|
||||||
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1391,6 +1439,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
} else if (currentlyOpenFolder?.item?.id != folder.id) {
|
} else if (currentlyOpenFolder?.item?.id != folder.id) {
|
||||||
closeFolder()
|
closeFolder()
|
||||||
}
|
}
|
||||||
|
accessibilityHelper.invalidateRoot()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun closeFolder(redraw: Boolean = false) {
|
fun closeFolder(redraw: Boolean = false) {
|
||||||
|
@ -1399,6 +1448,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
if (redraw) {
|
if (redraw) {
|
||||||
redrawGrid()
|
redrawGrid()
|
||||||
}
|
}
|
||||||
|
accessibilityHelper.invalidateRoot()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1409,7 +1459,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
val drawable = if (item.type == ITEM_TYPE_FOLDER) {
|
val drawable = if (item.type == ITEM_TYPE_FOLDER) {
|
||||||
item.toFolder().generateDrawable()
|
item.toFolder().generateDrawable()
|
||||||
} else {
|
} else {
|
||||||
item.drawable!!
|
item.drawable?.constantState?.newDrawable()?.mutate()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.docked) {
|
if (item.docked) {
|
||||||
|
@ -1458,7 +1508,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
|
|
||||||
private fun HomeScreenGridItem.visibleOnCurrentPage() = (pager.isItemOnCurrentPage(this) || docked) && parentId == null
|
private fun HomeScreenGridItem.visibleOnCurrentPage() = (pager.isItemOnCurrentPage(this) || docked) && parentId == null
|
||||||
|
|
||||||
private fun HomeScreenGridItem.isSingleCellType() = (drawable != null && type == ITEM_TYPE_ICON || type == ITEM_TYPE_SHORTCUT || type == ITEM_TYPE_FOLDER)
|
private fun HomeScreenGridItem.isSingleCellType() = (type == ITEM_TYPE_ICON || type == ITEM_TYPE_SHORTCUT || type == ITEM_TYPE_FOLDER)
|
||||||
|
|
||||||
private fun HomeScreenGridItem.toFolder(animateOpening: Boolean = false) = HomeScreenFolder(this, animateOpening)
|
private fun HomeScreenGridItem.toFolder(animateOpening: Boolean = false) = HomeScreenFolder(this, animateOpening)
|
||||||
|
|
||||||
|
@ -1502,13 +1552,18 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val items = getItems()
|
||||||
|
val itemsCount = getItems().count()
|
||||||
|
|
||||||
|
if (itemsCount == 0) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
val bitmap = Bitmap.createBitmap(iconSize, iconSize, Bitmap.Config.ARGB_8888)
|
val bitmap = Bitmap.createBitmap(iconSize, iconSize, Bitmap.Config.ARGB_8888)
|
||||||
val canvas = Canvas(bitmap)
|
val canvas = Canvas(bitmap)
|
||||||
val circlePath = Path().apply { addCircle((iconSize / 2).toFloat(), (iconSize / 2).toFloat(), (iconSize / 2).toFloat(), Path.Direction.CCW) }
|
val circlePath = Path().apply { addCircle((iconSize / 2).toFloat(), (iconSize / 2).toFloat(), (iconSize / 2).toFloat(), Path.Direction.CCW) }
|
||||||
canvas.clipPath(circlePath)
|
canvas.clipPath(circlePath)
|
||||||
canvas.drawPaint(folderIconBackgroundPaint)
|
canvas.drawPaint(folderIconBackgroundPaint)
|
||||||
val items = getItems()
|
|
||||||
val itemsCount = getItems().count()
|
|
||||||
val folderColumnCount = ceil(sqrt(itemsCount.toDouble())).roundToInt()
|
val folderColumnCount = ceil(sqrt(itemsCount.toDouble())).roundToInt()
|
||||||
val folderRowCount = ceil(itemsCount.toFloat() / folderColumnCount).roundToInt()
|
val folderRowCount = ceil(itemsCount.toFloat() / folderColumnCount).roundToInt()
|
||||||
val scaledCellSize = (iconSize.toFloat() / folderColumnCount)
|
val scaledCellSize = (iconSize.toFloat() / folderColumnCount)
|
||||||
|
@ -1519,8 +1574,9 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
val (row, column) = getItemPosition(it)
|
val (row, column) = getItemPosition(it)
|
||||||
val drawableX = (scaledGap + column * scaledIconSize + column * scaledGap).toInt()
|
val drawableX = (scaledGap + column * scaledIconSize + column * scaledGap).toInt()
|
||||||
val drawableY = (extraYMargin + scaledGap + row * scaledIconSize + row * scaledGap).toInt()
|
val drawableY = (extraYMargin + scaledGap + row * scaledIconSize + row * scaledGap).toInt()
|
||||||
it.drawable?.setBounds(drawableX, drawableY, drawableX + scaledIconSize.toInt(), drawableY + scaledIconSize.toInt())
|
val newDrawable = it.drawable?.constantState?.newDrawable()?.mutate()
|
||||||
it.drawable?.draw(canvas)
|
newDrawable?.setBounds(drawableX, drawableY, drawableX + scaledIconSize.toInt(), drawableY + scaledIconSize.toInt())
|
||||||
|
newDrawable?.draw(canvas)
|
||||||
}
|
}
|
||||||
canvas.drawPath(circlePath, folderIconBorderPaint)
|
canvas.drawPath(circlePath, folderIconBorderPaint)
|
||||||
return BitmapDrawable(resources, bitmap)
|
return BitmapDrawable(resources, bitmap)
|
||||||
|
@ -1572,6 +1628,10 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
|
|
||||||
fun getItemsGridCenters(): List<Triple<Int, Int, Int>> {
|
fun getItemsGridCenters(): List<Triple<Int, Int, Int>> {
|
||||||
val count = getItems().count()
|
val count = getItems().count()
|
||||||
|
if (count == 0) {
|
||||||
|
return emptyList()
|
||||||
|
}
|
||||||
|
|
||||||
val columnsCount = ceil(sqrt(count.toDouble())).roundToInt()
|
val columnsCount = ceil(sqrt(count.toDouble())).roundToInt()
|
||||||
val rowsCount = ceil(count.toFloat() / columnsCount).roundToInt()
|
val rowsCount = ceil(count.toFloat() / columnsCount).roundToInt()
|
||||||
val folderItemsRect = getItemsDrawingRect()
|
val folderItemsRect = getItemsDrawingRect()
|
||||||
|
|
|
@ -7,6 +7,7 @@ import android.os.Handler
|
||||||
import android.view.MotionEvent
|
import android.view.MotionEvent
|
||||||
import android.view.ViewConfiguration
|
import android.view.ViewConfiguration
|
||||||
import com.simplemobiletools.launcher.R
|
import com.simplemobiletools.launcher.R
|
||||||
|
import kotlin.math.abs
|
||||||
|
|
||||||
class MyAppWidgetHostView(context: Context) : AppWidgetHostView(context) {
|
class MyAppWidgetHostView(context: Context) : AppWidgetHostView(context) {
|
||||||
private var longPressHandler = Handler()
|
private var longPressHandler = Handler()
|
||||||
|
@ -51,10 +52,14 @@ class MyAppWidgetHostView(context: Context) : AppWidgetHostView(context) {
|
||||||
MotionEvent.ACTION_MOVE -> {
|
MotionEvent.ACTION_MOVE -> {
|
||||||
currentCoords.x = event.rawX
|
currentCoords.x = event.rawX
|
||||||
currentCoords.y = event.rawY
|
currentCoords.y = event.rawY
|
||||||
|
if (hasFingerMoved(event.rawX, event.rawY)) {
|
||||||
|
resetTouches()
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
||||||
longPressHandler.removeCallbacksAndMessages(null)
|
resetTouches()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,7 +67,7 @@ class MyAppWidgetHostView(context: Context) : AppWidgetHostView(context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
private val longPressRunnable = Runnable {
|
private val longPressRunnable = Runnable {
|
||||||
if (Math.abs(actionDownCoords.x - currentCoords.x) < moveGestureThreshold && Math.abs(actionDownCoords.y - currentCoords.y) < moveGestureThreshold) {
|
if (!hasFingerMoved(currentCoords.x, currentCoords.y)) {
|
||||||
longPressHandler.removeCallbacksAndMessages(null)
|
longPressHandler.removeCallbacksAndMessages(null)
|
||||||
hasLongPressed = true
|
hasLongPressed = true
|
||||||
longPressListener?.invoke(actionDownCoords.x, actionDownCoords.y)
|
longPressListener?.invoke(actionDownCoords.x, actionDownCoords.y)
|
||||||
|
@ -72,4 +77,7 @@ class MyAppWidgetHostView(context: Context) : AppWidgetHostView(context) {
|
||||||
fun resetTouches() {
|
fun resetTouches() {
|
||||||
longPressHandler.removeCallbacksAndMessages(null)
|
longPressHandler.removeCallbacksAndMessages(null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun hasFingerMoved(x: Float, y: Float) =
|
||||||
|
((abs(actionDownCoords.x - x) > moveGestureThreshold) || (abs(actionDownCoords.y - y) > moveGestureThreshold))
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,7 @@ import com.simplemobiletools.launcher.extensions.config
|
||||||
import com.simplemobiletools.launcher.extensions.getCellCount
|
import com.simplemobiletools.launcher.extensions.getCellCount
|
||||||
import com.simplemobiletools.launcher.helpers.MAX_CLICK_DURATION
|
import com.simplemobiletools.launcher.helpers.MAX_CLICK_DURATION
|
||||||
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
import com.simplemobiletools.launcher.models.HomeScreenGridItem
|
||||||
|
import kotlinx.collections.immutable.toImmutableList
|
||||||
|
|
||||||
@SuppressLint("ViewConstructor")
|
@SuppressLint("ViewConstructor")
|
||||||
class MyAppWidgetResizeFrame(context: Context, attrs: AttributeSet, defStyle: Int) : RelativeLayout(context, attrs, defStyle) {
|
class MyAppWidgetResizeFrame(context: Context, attrs: AttributeSet, defStyle: Int) : RelativeLayout(context, attrs, defStyle) {
|
||||||
|
@ -80,7 +81,7 @@ class MyAppWidgetResizeFrame(context: Context, attrs: AttributeSet, defStyle: In
|
||||||
redrawFrame()
|
redrawFrame()
|
||||||
|
|
||||||
occupiedCells.clear()
|
occupiedCells.clear()
|
||||||
allGridItems.forEach { item ->
|
allGridItems.toImmutableList().forEach { item ->
|
||||||
for (xCell in item.left..item.right) {
|
for (xCell in item.left..item.right) {
|
||||||
for (yCell in item.top..item.bottom) {
|
for (yCell in item.top..item.bottom) {
|
||||||
occupiedCells.add(Pair(xCell, yCell))
|
occupiedCells.add(Pair(xCell, yCell))
|
||||||
|
|
Loading…
Reference in New Issue