0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-19 19:52:14 +02:00

Add README to :ui-utils:ItemTouchHelper

This commit is contained in:
cketti 2024-05-28 17:59:57 +02:00
parent 685dd91218
commit 0547ce8684

View File

@ -0,0 +1,12 @@
# ItemTouchHelper
This is a copy of the `ItemTouchHelper` class and its helpers from [AndroidX RecyclerView](https://developer.android.com/jetpack/androidx/releases/recyclerview) 1.2.1.
It was modified to support swipe actions that don't remove the item from the list, i.e. our swipe actions "toggle selection", "mark as read/unread", "add/remove star". For those actions the view is animated back into its original position instead of off the screen.
Changes to this class should be limited to the functional changes we need. The aim is to make it easier to rebase on AndroidX's version of `ItemTouchHelper`.
This means…
- we're not converting this class to Kotlin unless AndroidX changes their version,
- we're ignoring warnings generated by unmodified code,
- and we're leaving API checks that could be removed because our minSdkVersion is higher than that of the AndroidX library.