mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-04 02:31:08 +02:00
Remove notifyDataSetChanged uses to restore item animations
This commit is contained in:
parent
2611758758
commit
ec668ad26a
@ -78,13 +78,9 @@ class ChecklistAdapter(
|
|||||||
|
|
||||||
override fun getItemKeyPosition(key: Int) = items.indexOfFirst { it.id == key }
|
override fun getItemKeyPosition(key: Int) = items.indexOfFirst { it.id == key }
|
||||||
|
|
||||||
override fun onActionModeCreated() {
|
override fun onActionModeCreated() {}
|
||||||
notifyDataSetChanged()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onActionModeDestroyed() {
|
override fun onActionModeDestroyed() {}
|
||||||
notifyDataSetChanged()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun prepareActionMode(menu: Menu) {
|
override fun prepareActionMode(menu: Menu) {
|
||||||
val selectedItems = getSelectedItems()
|
val selectedItems = getSelectedItems()
|
||||||
@ -161,27 +157,35 @@ class ChecklistAdapter(
|
|||||||
|
|
||||||
private fun moveSelectedItemsToTop() {
|
private fun moveSelectedItemsToTop() {
|
||||||
activity.config.sorting = SORT_BY_CUSTOM
|
activity.config.sorting = SORT_BY_CUSTOM
|
||||||
|
val movedPositions = mutableListOf<Int>()
|
||||||
selectedKeys.reversed().forEach { checklistId ->
|
selectedKeys.reversed().forEach { checklistId ->
|
||||||
val position = items.indexOfFirst { it.id == checklistId }
|
val position = items.indexOfFirst { it.id == checklistId }
|
||||||
val tempItem = items[position]
|
val tempItem = items[position]
|
||||||
items.removeAt(position)
|
items.removeAt(position)
|
||||||
|
movedPositions.add(position)
|
||||||
items.add(0, tempItem)
|
items.add(0, tempItem)
|
||||||
}
|
}
|
||||||
|
|
||||||
notifyDataSetChanged()
|
movedPositions.forEach {
|
||||||
|
notifyItemMoved(it, 0)
|
||||||
|
}
|
||||||
listener?.saveChecklist()
|
listener?.saveChecklist()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun moveSelectedItemsToBottom() {
|
private fun moveSelectedItemsToBottom() {
|
||||||
activity.config.sorting = SORT_BY_CUSTOM
|
activity.config.sorting = SORT_BY_CUSTOM
|
||||||
|
val movedPositions = mutableListOf<Int>()
|
||||||
selectedKeys.forEach { checklistId ->
|
selectedKeys.forEach { checklistId ->
|
||||||
val position = items.indexOfFirst { it.id == checklistId }
|
val position = items.indexOfFirst { it.id == checklistId }
|
||||||
val tempItem = items[position]
|
val tempItem = items[position]
|
||||||
items.removeAt(position)
|
items.removeAt(position)
|
||||||
|
movedPositions.add(position)
|
||||||
items.add(items.size, tempItem)
|
items.add(items.size, tempItem)
|
||||||
}
|
}
|
||||||
|
|
||||||
notifyDataSetChanged()
|
movedPositions.forEach {
|
||||||
|
notifyItemMoved(it, items.size - 1)
|
||||||
|
}
|
||||||
listener?.saveChecklist()
|
listener?.saveChecklist()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user