Skip to main content

All Questions

1 vote
0 answers
20 views

UIAccessibility post announcement not always read if fired by button

I have a simple app to announce a text when tapping a button. Here is the code (it's in SwiftUI but the same behavior arises using UIKit) struct ContentView: View { var body: some View { ...
rai212's user avatar
  • 751
0 votes
1 answer
29 views

Android Talkback issue for ImageView

I'm using ImageView for voiceover accessibility as below: imageView.setContentDescription("This is ImageView control"); But problem which I'm facing, that voiceOver pronouncing complete ...
Pankaj's user avatar
  • 861
0 votes
0 answers
44 views

voice over is enabled(UIaccesibility.isVoiceOverRunning) on parent A(nav controller) and On child view(UIactivityViewcontroller)voice over is disabled

I'm trying to achieving accessibility on activityviewcontroller. I'm presenting navigation controller over root view and later presenting activityviewcontroller over navigation controller.I found ...
datha's user avatar
  • 359
1 vote
1 answer
30 views

Make screen readers (NDVA) announce menu items after login

I have created an accessible priority menu based on this example: https://www.codementor.io/@marys/flexbox-priority-navigation-1bussno6uj. I have also added a login feature for three types of users. ...
RPC's user avatar
  • 100
1 vote
1 answer
129 views

Convert read only fields for accessibility purposes

I'm converting an application to be compliant with the W3 accessibility guidelines. I need to have the screen reader to read the title and the value together, only using <p> tags. This website ...
dariamanskaia's user avatar
2 votes
1 answer
278 views

accessibilityViewIsModal in swiftUI

I've used accessibilityViewIsModal - true in UIKit where I need to shift accessibility focus from one view to another subview. How to use accessibilityViewIsModal in swiftUI? I've tried following ...
pkc456's user avatar
  • 8,498
2 votes
1 answer
173 views

AccessibilityIdentifier for group of Texts at the same time with identifiers to each of Text

For example code: HStack { Text("Hello") .accessibilityIdentifier("first_word") Text(" ") Text("World!") .accessibilityIdentifier(&...
Konstantin.Efimenko's user avatar
8 votes
1 answer
289 views

How to skip accessibility focus on one bar button item and keep focus on other bar button items of the toolbar

I have a toolbar , I'd like to skip the title button when accessibility is turned on. I can skip accessibility for the whole tool bar using accessibilityElementsHidden. but I just want to skip the ...
Shajo's user avatar
  • 193
0 votes
0 answers
63 views

is it possible for a third-Party to develop Android Accessibility Service with Real-Time Speech Recognition for Live Captions-like Functionality

I am developing an accessibility service application and I need functionality similar to the live captions in Android, I am able to build an accessibility service similar to talkback i.e. I can able ...
Arvind suresh's user avatar
0 votes
2 answers
174 views

how do I dismiss keyboard when a UIView receives accessibilityElementDidLoseFocus

I have a search view controller with the search bar on top. When searching, the keyboard shows up and stay up even when accessibilityElementDidLoseFocus is called on the search bar. I would like to ...
iOSer's user avatar
  • 246
0 votes
1 answer
584 views

How to retrieve the exact Accessibility Tree or Accessibility Object Model (AOM) produced by Chrome with Playwright/Selenium?

Google Chrome (as far as I know, every other browser) analyzes the DOM and produces something called Accessibility Tree (AT) where only the interactive and descriptive elements are shown (e.g. <...
Mustafa's user avatar
0 votes
0 answers
192 views

Change language of screen reader in react native

I'm using Accessibility API in react-native, and I wish to change the language of screen readers like VoiceOver (iOS) and TalkBack (Android) when the user has changed the language. Can someone please ...
Shubham Bisht's user avatar
0 votes
0 answers
27 views

How can accessibility checker handle "no content errors" when using template variables?

This is my code: <h3>{{$ctrl.fieldTemplate.label}}</h3> Checker using WAVE: WAVE is not picking up data from template variables
Dale's user avatar
  • 49
0 votes
0 answers
350 views

How can i stop reading "Direct touch area. Use the rotor to enable direct touch for this app" in our iOS app accessibility?

When the voice-over is ON, I am always hearing this "Direct touch area. Use the rotor to enable direct touch for this app". How can I get rid of this, this is so much annoying to the end ...
user2748172's user avatar
0 votes
0 answers
127 views

Is it possible to set accessibility labels on system provided UIActivity items in UIActivityViewController?

When I use Accessibility Inspector to inspect the reminders and more buttons in the UIActivityViewController their labels are both simply "Activity". Is it possible to change these labels? I ...
Caleb Bolton's user avatar

15 30 50 per page
1
2 3 4 5
14