Questions tagged [accessibility]

Accessibility seeks to make an application or website usable by everyone, including people with disabilities such as visual, auditory, ambulatory, or cognitive impairment. *This tag should NOT be used for:* programming that requires "accessing" a process in multiple threads, a object in a class, a resource on a network, etc. or responsive design, which deals with serving content to a wide range of devices, unless there are also accessibility concerns.

Accessibility seeks to make an application or website usable by everyone, including people with disabilities such as visual, auditory, mobility or cognitive impairment. For example, usage of alt="description" text for graphic images on the web can help users with low-functioning vision.

Accessible design for the Internet is formally guided by the Web Content Accessibility Guidelines (WCAG), the Authoring Tool Accessibility Guidelines (ATAG) and the Web Accessibility Initiative's Accessible Rich Internet Applications standard (WAI-ARIA).

Accessible design may be required by law, notably Section 508 of the Rehabilitation Act of 1973 (USA) and the European Accessibility Act (Europe).

Other helpful resources are found at WebAIM.org.

Stand-alone software is made accessible by thoughtful design and APIs such as Microsoft UI Automation for Windows.

This tag should not be used for:

  • programming that requires "accessing" a process in multiple threads, a object in a class, a resource on a network, etc.
  • , which deals with serving content to a wide range of devices. (This can be closely related at times, but is generally a separate topic.)
7805 questions
3
votes
0 answers

Setting VoiceOver focus order on current collectionView page

I am trying to add full VoiceOver support to my app. I have a calendar that's a collectionView where the current date is in one of the middle pages. When using the one-finger swipe in VoiceOver to change the speaker focus, it automatically goes to…
ap123
  • 916
  • 1
  • 8
  • 22
3
votes
2 answers

How to check status of Remove Animations accessibility setting programmatically

I'm trying to check for the status of Remove animations accessibility setting in order to enable/disable some UI and GIFs animations on my app, but i don't see any exposed method in AccessibilityManager in order to access this value: Is there any…
nsL
  • 3,722
  • 3
  • 23
  • 40
3
votes
2 answers

Checking if a browser has support for blind or partially-sighted people?

How do I check (using Java or JavaScript) if a browser has support for blind or partially-sighted people?
newbie
  • 14,582
  • 31
  • 104
  • 146
3
votes
1 answer

Accessibility Voiceover focus issue in SwiftUI

In swiftUI how to move focus to required view. After click on one button api is getting called and view is refreshing, but after that focus is moving back to top left corner of view. i want that focus to stay on same button.
AVR
  • 119
  • 1
  • 11
3
votes
0 answers

SAPUI5 and screen reader

I have some issues with SAPUI5 framework and screen reader. For example on Android with Voice Assistent and Chrome browser, when you tap a button, the voice assistent always calls - what I guess is coming from the icon - twice.
ajsnub
  • 53
  • 1
  • 7
3
votes
2 answers

Bold dynamic type in Swift

How come for a dynamic font on a UILabel where we have the following: artistLabel.font = UIFont.preferredFont(forTextStyle: .body, compatibleWith: UITraitCollection(legibilityWeight: .regular)) …
WishIHadThreeGuns
  • 1,225
  • 3
  • 17
  • 37
3
votes
2 answers

Angular CDK A11y Focus Trap Modal / Dialog

I'm desperately trying to figure out the best way to add focus trap to my modals in an Angular 8 application. I've stumbled upon the Angular Material CDK and installed it for the A11y Accessibility tools only but I can't figure out how to import and…
qbert
  • 119
  • 2
  • 9
3
votes
0 answers

IOS SwiftUI accessibility Focus goes on Status bar. How to make focus stay on single view

I have scenario where i need to keep focus of accessibility on single view until user perform any another swipe action. but in my case focus is automatically moving to status bar items like battery and network status. don't know how to stop it from…
amey rane
  • 167
  • 1
  • 8
3
votes
3 answers

Clicking element using Enter/Space key is not working even though it is focused (accessibility)

JavaScript When I navigate through focusable elements in web page using Tab key, element is also focused since tabindex attribute is set to "0". But not able to click it using Space or Enter key. Is…
Prime
  • 2,809
  • 1
  • 7
  • 23
3
votes
2 answers

How to change the VoiceOver pronunciation in swift?

I am trying to implement the accessibility to my ios project. Is there a way to correct the pronunciation of some specific words when the voice-over is turned on? For example, The correct pronunciation of 'speech' is [spiːtʃ], but I want the…
LightOwlGG
  • 139
  • 10
3
votes
1 answer

SwiftUI: Change VoiceOver focus programatically

I have a SwiftUI form that has a custom collapsable list, which collapses when you select an item. The VoiceOver navigation up to that point works fine for the form, but collapsing the options sends the focus seemingly behind the screen where…
PiKey
  • 259
  • 2
  • 6
3
votes
1 answer

SVG logo - Heading and web accessibility

Inside header.handlebars I have only one svg file that I use as the page logo:
user1941537
  • 6,097
  • 14
  • 52
  • 99
3
votes
1 answer

Android Talkback announcement interrupted

I have activity A with recipes that opens activity B for more options for a recipe. In activity B I'm doing an action (like adding to favorites) that finishes activity B. When doing that action, I'm triggering a Talkback announcement so that the…
3
votes
1 answer

Making a grouped WPF ItemsControl accessible to screen readers

I have an ItemsControl in my WPF application. This application must be accessible to screen reader software such as Narrator, NVDA and JAWS. The problem is that when using grouping, child items within that ItemsControl suddenly become invisible to…
Drew Noakes
  • 300,895
  • 165
  • 679
  • 742
3
votes
1 answer

How to fix "name property of a focusable element must not be null"

Im using UI accessibility insights to test my react app on windows. I get a lot of "name property of a focusable element must not be null" and a lot of "focusable sibling elements must not have the same name and localizedcontroltype" errors. I have…
YTG
  • 956
  • 2
  • 6
  • 19
1 2 3
99
100