Add fast-scrolling ability#19
Open
Sternbach-Software wants to merge 2 commits into
Open
Conversation
Owner
|
I thought recycler view has a fast scroll option. Can we use that instead? |
Author
|
No. The recycler-view does not have an adjustable handle size and is almost impossible to click because of how small it is. I guarantee almost no one knows that they can even scroll using the handle because it is so hard to use like that, let alone seeing that it is even there. It also doesn't display a bubble. I use the bubble in my work app in a list of speakers to display the first letter of their last name, which is exactly how google does it in their contacts app.
|
Owner
|
Contacts app is completely different story because there is clear categorization available there. |
Author
|
Whatever you say. Using the scrolling of a FastScrollerRecylerView is much easier and faster than using a regular RecyclerView. Your choice what to do with that information.
|
PatrykRoma
approved these changes
May 25, 2023
Johbeyu
approved these changes
Nov 4, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace RecyclerView with FastScrollerRecyclerView to offer fast-scrolling through hundreds of thousands of logs quickly without having to manually scroll all the way through (an impossible feat for over 150,000 logs per minute). The bubble letter is "icing on top" and optional (all of the code in LineAdapter can be ignored and the fast-scrolling functionality will remain). The first thing I could come up with for a useful bubble text was the position of the scrollbar in the list. Maybe the time of the log at the scrollbar position would be more useful. What do you think?