mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Attempt to fix flickering
This commit is contained in:
parent
f0f1e0f3f6
commit
ba4a76dc18
1 changed files with 6 additions and 6 deletions
|
@ -1417,12 +1417,12 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
|
||||
@Override
|
||||
protected void onOverScrolled(int scrollX, int scrollY, boolean clampedX, boolean clampedY) {
|
||||
super.onOverScrolled(scrollX, scrollY, clampedX, clampedY);
|
||||
if (clampedY) {
|
||||
int range = computeVerticalScrollRange() - computeVerticalScrollExtent();
|
||||
if (range > 0) // This is to prevent flicker
|
||||
properties.scrollBy(0, dy);
|
||||
}
|
||||
int range = computeVerticalScrollRange() - computeVerticalScrollExtent();
|
||||
Log.i("Overscroll=" + scrollY + "/" + clampedY + " range=" + range + " dy=" + dy);
|
||||
if (clampedY && range > 0 && (scrollY == 0 || scrollY == range))
|
||||
properties.scrollBy(0, dy);
|
||||
else
|
||||
super.onOverScrolled(scrollX, scrollY, clampedX, clampedY);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue