Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-139833

[a11y] Auditive feedback during scroll missing

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P3: Somewhat important P3: Somewhat important
    • None
    • 6.9.2
    • None
    • Android

      On Android it is common to give the visually impaired users auditive feedback about the current scroll position during the scroll gesture.

      iOS and macOS only emit "ding" sounds when the start/end of a list are reached.

      Android uses gradient "ding" sounds to indicate the relative position within the scroll view. I've attached a screen cast to show this behavior: AndroidSettings.mp4

      See this MWE to reproduce the issue:

      ApplicationWindow {
      	visible: true
      
      	Flickable {
      		Accessible.role: Accessible.ScrollBar
      		anchors.fill: parent
      		contentHeight: columnLayout.implicitHeight
      		contentWidth: columnLayout.implicitWidth
      
      		ColumnLayout {
      			id: columnLayout
      
      			Repeater {
      				model: 100
      
      				Text {
      					Accessible.name: text
      					Accessible.role: Accessible.StaticText
      					Layout.fillWidth: true
      					color: "white"
      					text: "Element %1".arg(index)
      				}
      			}
      		}
      	}
      }
      

        For Gerrit Dashboard: QTBUG-139833
        # Subject Branch Project Status CR V

            qt.team.quick.subscriptions Qt Quick and Widgets Team
            janmoeller Jan Möller
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: