Improve TalkBack accessibility for app volume rows and stabilize compact list visibility#55
Draft
Copilot wants to merge 5 commits into
Draft
Improve TalkBack accessibility for app volume rows and stabilize compact list visibility#55Copilot wants to merge 5 commits into
Copilot wants to merge 5 commits into
Conversation
Agent-Logs-Url: https://github.com/yume-chan/VolumeManager/sessions/9d63c965-7ff7-43ad-9107-d3d35d9f1caa Co-authored-by: yume-chan <1330321+yume-chan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix accessibility issues for screen reader users
Improve TalkBack accessibility for app volume rows and stabilize compact list ordering
May 17, 2026
yume-chan
requested changes
May 17, 2026
Owner
yume-chan
left a comment
There was a problem hiding this comment.
I think the original reporter means when changing volume of one app, the whole list re-compose, and the accessibility focus jumps to the first list item, check whether this is an issue, and fix it if it is.
Agent-Logs-Url: https://github.com/yume-chan/VolumeManager/sessions/af32b42c-1dcb-418c-bcb1-696fba8ad277 Co-authored-by: yume-chan <1330321+yume-chan@users.noreply.github.com>
Contributor
Author
Implemented in 50622a1. Compact mode now uses a 10s |
Copilot
AI
changed the title
Improve TalkBack accessibility for app volume rows and stabilize compact list ordering
Improve TalkBack accessibility for app volume rows and stabilize compact list visibility
May 17, 2026
yume-chan
requested changes
May 18, 2026
Agent-Logs-Url: https://github.com/yume-chan/VolumeManager/sessions/1f4c8f13-65f8-4426-9e05-5f868bba319f Co-authored-by: yume-chan <1330321+yume-chan@users.noreply.github.com>
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.
Blind/TalkBack users reported two blockers: the compact app list reorders/jumps as playback state changes (notably TTS), and volume controls are not exposed as focusable/adjustable slider controls. This update targets those behaviors with minimal Compose changes.
Compact list stability (reduce focus-jump churn)
hasBeenPlayingRecentlytoApp.truewhen playback is active (isPlaying = true) and decays back tofalseafter a short delay (10 seconds) once playback stops.AppVolumeList, compact mode (showAll = false) now shows apps based onhasBeenPlayingRecentlyinstead of all inactive players, preserving intended compact behavior while reducing rapid row disappearance that causes accessibility focus jumps.Expose custom slider as an accessible adjustable control
TrackSlidernow publishes slider/progress semantics viaprogressSemantics(...).Improve slider spoken context
AppVolumeSlidernow sets explicit semantics:contentDescription = app.namestateDescription = "<volume>%"