Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
Advice
0 votes
2 replies
53 views

I have in my react native project header with this structure: <View style={styles.header}> <View style={styles.leftIcon}> <TouchableOpacity accessibilityRole="button" /&...
bytebunny's user avatar
  • 323
0 votes
0 answers
44 views

Is it a good practice to make Talkback read all the items in a lazy row automatically? For example, user focuses in the first item of the lazy row, talkback reads the whole item, and the move on to ...
KotlinBeliever's user avatar
1 vote
1 answer
115 views

I have a view in my app which needs to show a mix of English and Arabic, as follows: The above view is a Column that contains two separate Text items. My app is localised to English. It has the odd ...
Adil Hussain's user avatar
  • 32.6k
1 vote
0 answers
118 views

I've got the following case: The user has a list of elements, including a range slider, if the range slider is changed (or any of the elements in the list) the entire list should get refreshed with ...
JustSightseeing's user avatar
4 votes
3 answers
209 views

The simplest version of the problem looks like this: Column(modifier = Modifier.clickable { }.padding(all = 16.dp)) { AndroidView(factory = ::TextView, update = { it.text = "AndroidView" })...
theisenp's user avatar
  • 8,291
0 votes
0 answers
87 views

I'm facing an accessibility issue in my Android app when replacing fragments with addToBackStack. When a fragment is added without addToBackStack, TalkBack reads it properly. But if I use ...
Divyansh Gemini's user avatar
0 votes
0 answers
31 views

I use the android WebView and there are some @JavascriptInterface functions,but after I open the Talkback, the JavascriptInterface functions don't work. That's why? How to resolve the problem? - -
jjjjbababy's user avatar
0 votes
0 answers
32 views

Description: 1.In the attached sample, when TalkBack is enabled, the tooltip content is read automatically, even before the user taps on the tooltip. 2.This issue can be resolved by adding ...
Suriya 's user avatar
0 votes
1 answer
103 views

In my app, I want to capture touch pad double click and perform an action for accessibility (read something aloud). However, this action is different from mouse right click. I used different codes but ...
Mahfuz's user avatar
  • 43
0 votes
0 answers
75 views

I’m encountering an issue with accessibility in a RecyclerView when using RecyclerViewAccessibilityDelegate. The onInitializeAccessibilityNodeInfo method is successfully called for the RecyclerView ...
Deepu George Jacob's user avatar
0 votes
0 answers
57 views

I am developing a app where there is single activity and all the webviews/fragment load in ti only and based on criterias or screen few of the elements are hidden or visible. When i enable talkback it ...
stack Learner's user avatar
1 vote
1 answer
784 views

I have declared a Row which contains a Text and Button as follows: Row( modifier = Modifier.semantics(mergeDescendants = true) { role = Role.Button } ) { Text("Date completed") ...
Adil Hussain's user avatar
  • 32.6k
-1 votes
1 answer
1k views

I am writing some accessibility for an Android application using JetPack Compose and Kotlin. I have a button component that is being used as a switch button, it can be selected or unselected. In terms ...
Cherlan-Miche PHILIPPE's user avatar
0 votes
1 answer
104 views

I've got a page on android that has a list of carousels. Each carousel has a header. When Talkback is enabled, currently the user has to go from the title of the carousel, navigate over every carousel ...
rohan's user avatar
  • 663
0 votes
1 answer
122 views

I'm using custom DragShadowBuilder for drag and drop。A drag shadow will be created after long click the item when talkback on. After 1s, i send an accessibility event to the dragshadow. In addition to ...
Ericer's user avatar
  • 11
0 votes
1 answer
97 views

When TalkBack is enabled, is there any way to set the accessibility focus back to a specific view after navigate out and back to the page? For instance, when I click ButtonA in PageA and using ...
xiao liu zi's user avatar
2 votes
0 answers
191 views

I have created my own accessibility service where I want to record events like app open and clicked for selected apps. This is working fine for xml views but for Compose views I don't get ...
Neha Madiwal's user avatar
1 vote
0 answers
69 views

I have a vertical recycler view that stores horizontal recycler views (using GridLayout doesn't fit my solution), and most of the time only one horizontal recycler view is rendered to the user, and in ...
Tgeodude's user avatar
1 vote
0 answers
334 views

Original Question: Is there an equivalent to View.performAccessibilityAction(AccessibilityNodeInfo.ACTION_ACCESSIBILITY_FOCUS, null) for Composables in Android Compose? Since typing this question with ...
MajinKenn's user avatar
  • 109
1 vote
0 answers
73 views

I've two fragments - IntroFragment DetailFragment Intro layout - <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android=&...
AndroidCoder's user avatar
  • 2,735
1 vote
0 answers
515 views

I have an native android app that has an activity with top bar having a back arrow and the title of the page.The activity is NFC based and the page instructs the user to tap their NFC enabled device ...
Arnav_05's user avatar
1 vote
0 answers
113 views

I've implemented HighChartView in android using JavaScript where I'm plotted ting my dynamic data into graph form now I want to handle the accessibility for graph and for all the plotted view for ...
Manoj Gandla Sureshbabu's user avatar
0 votes
1 answer
1k views

I need to do some stuff when the composable has a focus in accessibility mode but i cannot seem to find a way to do it. I cannot capture the moment when the focus is on the composable in accessibility ...
Dipsy's user avatar
  • 141
1 vote
0 answers
416 views

The problem I'm having is that when I navigate from screen to screen using jetpack compose the talkback target does not move to the top of the new screen as it should, instead, it finds the closest ...
Ben Johnson's user avatar
1 vote
2 answers
601 views

So I'm working on the Accessibility feature in my app. My problem is, the TalkBack announces extra texts regardless of the clearAndSetSemantics{} fun. For example to the close button it says: "...
Andreas1234's user avatar
0 votes
1 answer
146 views

I am working on an app that have several recyclerView. When I use talkback to swipe between items, it does not specify item position out of items size such as 1 out of 12. But I created a sample app ...
Ali's user avatar
  • 10k
0 votes
1 answer
284 views

I have a dropdown represented by an ExposedDropdownMenu style on a TextInputLayout view element. <TextInputLayout style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox....
MajinKenn's user avatar
  • 109
2 votes
0 answers
580 views

I need to create a scrollable container that's accessible by keyboard. The container is a div with overflow: scroll, and I've set tabindex="0" so that it's focusable. While scrolling works ...
baowizard's user avatar
1 vote
0 answers
178 views

Apple's chart's framework has a Voice Over accessibility feature they call an ‘audio graph’ that will play audio tones while the user scrubs their finger across a chart. Watch at 3:40 in this WWDC ...
multidynamic's user avatar
0 votes
1 answer
285 views

I failed to implement a list imformation using CollectionInfo and CollectionItemInfo. I've success to compile, and application is also launched. I expected TallkBack to read the total number of list ...
 Joseph Park's user avatar
2 votes
1 answer
118 views

I'm developing a web application that runs on Android TVs using WebView and implements custom keyboard navigation. The app works as expected with custom navigation handling. However, when TalkBack is ...
theg's user avatar
  • 579
1 vote
0 answers
798 views

I have a "toast" (custom composable using Box, which slides in and out after some time) notification, and I want talkback to read up the contentDescription "immediately" ...
Prexi's user avatar
  • 13
1 vote
1 answer
308 views

We are using OS accessibility service APIs to track the number of screen reader users we have on both iOS and Android. But we are seeing some smelly results and this had made me wonder if our ...
darkknightsds's user avatar
0 votes
0 answers
186 views

Android Talkback announces the version information incorrectly in date format as “February 5th, 1446, when focuses on the app version string '2.5.1446'. There is an html page which contains version ...
Niladri's user avatar
  • 135
1 vote
1 answer
3k views

I'm experimenting accessibility with TalkBack and Jetpack Compose on a small feature that I designed with a step-by-step process. I use the composeView that contains my custom Router to drive the ...
Nico's user avatar
  • 11
2 votes
0 answers
81 views

I have an issue when trying to publish my app on the Google Play Store. The automated tests can't focus the buttons created in the app in the accessibility tests. In tests with talkback on an Android ...
Daniel Rossi's user avatar
2 votes
1 answer
247 views

Applying accessibility content description for Seekbar in setOnSeekBarChangedListener and talkback is reading the seek bar rating status in percentage then the content description eg "100% 10 ...
Shyam Sunder's user avatar
7 votes
0 answers
86 views

Problem When opening a BottomSheetDialogFragment, with composable content, and TalkBack enabled, the app label is announced immediately. This is an unexpected and jarring experience for TalkBack users....
Lucas's user avatar
  • 743
0 votes
0 answers
348 views

I have a linear layout containing a purely decorative ImageView, and a text view. as such I've labelled the image as importantForAccessibility="no" However, when highlighting the linear ...
Emmaaa's user avatar
  • 319
0 votes
0 answers
91 views

I've a custom view button and I call setContentDescription multiple times based on the state of the custom view. I'm seeing a odd behavior from talkback, it is reading "Selected <string based ...
Satty's user avatar
  • 65
2 votes
0 answers
413 views

We have a JetPack Compose HorizontalPager as one of many elements in a LazyColumn. The HorizontalPager has left and right pointing arrow buttons on each side to move to the previous or next item using ...
Farfugium japonicum's user avatar
0 votes
1 answer
768 views

Hello I am trying to make talkback read out text from Text() and default line from Switch() using compose semantics. This is my code: var toggle by remember { mutableStateOf(true) ...
Tbijo54's user avatar
  • 375
4 votes
1 answer
1k views

I’m creating a button in compose that redirects the user to the browser. According to accessibility guidelines and our auditor we need to mark this button as “Link” so that in talkback it will anounce ...
Octaaf's user avatar
  • 185
0 votes
0 answers
135 views

I want to use my own view display, to make the left,ringht, up, down key pad work when the TV talkback is ON. I try more method, but all can't work. I also try to use ExploreByTouchHelper , same as ...
Devin's user avatar
  • 1
1 vote
1 answer
2k views

By pressing one of 2 buttons, I can add a text "Apple" or "Orange" at the start of a list, in which that list will be displayed in a column on top. Each new text will appear at the ...
user22376410's user avatar
1 vote
0 answers
694 views

I encountered an unusual bug specifically in Android version 12. When swiping within a HorizontalPager in Compose, regardless of whether it contains images or simple text, the focus is unexpectedly ...
David Aleksanyan's user avatar
2 votes
0 answers
326 views

I need a help with talkback android reader on Select Option tag. It is working fine with nvda and jaws but talkback is somehow not reading aria-label text in option tag <select aria-label='test' id=...
Amit Chhetri's user avatar
2 votes
0 answers
187 views

I am working on adding accessibility I am attempting to have a toast be read after another element is focused on. The previous element is getting cut off before finishing. Attempting to focus & ...
SolidSnacks's user avatar
1 vote
0 answers
166 views

I have a following constraint layout: sampleconstraint.xml <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" android:...
Remik's user avatar
  • 83
0 votes
1 answer
278 views

I have a following custom view that have 2 text fields and a RadioButton, I'd like it to behave like a RadioButton (when it comes to talkback) Currently: When selecting the customRadioButton it says ...
Remik's user avatar
  • 83

1
2 3 4 5
11