Article list view has janking on first time login
Closed this issue · 2 comments
anirvan-majumdar commented
When a user logs-in for the first time, there's quite a bit of jank while scrolling the list view. This might be due to the fact the article data is getting fetched simultaneously. Try and optimise the recycler view refresh while the data is being fetched.
nikhil-31 commented
Hi,
Jank is due to high number of requests being made. Problem will be solved
if I use a job priority queue and update in background. Time constraint
prevented me but I will do it tonight.
…On Feb 6, 2018 12:42, "anirvan" ***@***.***> wrote:
When a user logs-in for the first time, there's quite a bit of jank
<https://developer.android.com/training/testing/performance.html#measure>
while scrolling the list view. This might be due to the fact the article
data is getting fetched simultaneously. Try and optimise the recycler view
refresh while the data is being fetched.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#3>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ATBU_3HLJPxeXcluQjzd6D3tIYiK-harks5tR_txgaJpZM4R6mCS>
.
nikhil-31 commented
Hi,
This has been fixed with the latest release the realm db insert now happens async. So UI should be jank free.
Will Close this issue now.