Replies: 2 comments
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
1. README anchor links causing unstable/jumpy scrolling The README viewer keeps reflowing content (images, GIFs, badges finishing their load) after it jumps you to the anchor. Your scroll position and the reflow fight each other, so tapping anywhere restarts the jitter. Fixes, in order of effectiveness:
2. Repository list resets to the top after opening an item and going back The list (RecyclerView) is being handed a freshly-built dataset when you return instead of resuming the same one, which wipes the saved scroll position. Likely causes: the screen re-fetches/rebuilds the list on resume, the fragment/viewmodel tied to the list is being destroyed instead of paused, or (if paginated) new data replaces the old page set before scroll state can reattach. What you can do today:
For whoever picks this up: setting the adapter's Since neither of these is fixable from the user side long-term, I'd suggest splitting them into two separate reports (unrelated causes, likely different owners) and linking back to this discussion in each, with Android version + device model + whether the README bug correlates with GIFs specifically. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Android
Body
I usually browse hundreds of repositories a day, and going into the readme files with many links is quite tedious because the readme file simply becomes quite unstable If I click on a link that redirects to a section of the readme, the readme just starts going up and down, and many times I just click somewhere on the screen and it becomes unstable again.
Another problem occurs with the lists (the RecyclerView) where I see large lists of repositories, I constantly check huge lists, and when I select a repository, inspect it, and return to the list, it takes me back to the first item in the list No matter how far I've progressed, it always takes me back to the beginning of the list. It wasn't like that before.
All reactions