android-accessibility

How to implement android intermediate progressbar accessibility

ぐ巨炮叔叔 提交于 2021-02-10 14:47:51
问题 I would like to announce the loading text on an android intermediate progressbar. I want to output something like this for disabled people who are using talkback service on the Android device when an intermediate progressbar is loading. File is loading. File is fetching. File is converting. File is loaded. I checked around google and found that I could use: 1) announceForAccessibility on progressbar view. (Not working in my case, only works when I load it with a Handler) My code override fun

How to implement android intermediate progressbar accessibility

喜欢而已 提交于 2021-02-10 14:47:12
问题 I would like to announce the loading text on an android intermediate progressbar. I want to output something like this for disabled people who are using talkback service on the Android device when an intermediate progressbar is loading. File is loading. File is fetching. File is converting. File is loaded. I checked around google and found that I could use: 1) announceForAccessibility on progressbar view. (Not working in my case, only works when I load it with a Handler) My code override fun

Talkback focus goes to toolbar items when recyclerview within nestedscrollview is scrolled

老子叫甜甜 提交于 2021-01-27 05:27:14
问题 I have a nestedscrollview within my layout which contains few texts, buttons and recyclerviews. When talkback is on, I am able to traverse through all elements. But I face an issue. When my horizontal recyclerview is scrolled and then I swipe to hear the talkback, the focus moves to the toolbar first item. Then I need to traverse through all the visible items to reach to the horizontal scrollview scrolled item. This issue arises only for recyclerviews within nestedscrollview. My

Talkback focus goes to toolbar items when recyclerview within nestedscrollview is scrolled

微笑、不失礼 提交于 2021-01-27 05:25:56
问题 I have a nestedscrollview within my layout which contains few texts, buttons and recyclerviews. When talkback is on, I am able to traverse through all elements. But I face an issue. When my horizontal recyclerview is scrolled and then I swipe to hear the talkback, the focus moves to the toolbar first item. Then I need to traverse through all the visible items to reach to the horizontal scrollview scrolled item. This issue arises only for recyclerviews within nestedscrollview. My

Talkback focus goes to toolbar items when recyclerview within nestedscrollview is scrolled

走远了吗. 提交于 2021-01-27 05:25:27
问题 I have a nestedscrollview within my layout which contains few texts, buttons and recyclerviews. When talkback is on, I am able to traverse through all elements. But I face an issue. When my horizontal recyclerview is scrolled and then I swipe to hear the talkback, the focus moves to the toolbar first item. Then I need to traverse through all the visible items to reach to the horizontal scrollview scrolled item. This issue arises only for recyclerviews within nestedscrollview. My

How to focus Buttons (or other widgets) with TalkBack turned ON in Android Device?

核能气质少年 提交于 2020-06-03 07:33:17
问题 I'm implementing Accessibility in my application. Here's the scenario : I have 4 buttons arranged horizontally at the very top of the screen (Activity). On the click of a button, I'm launching an Alert Dialog which displays something to the user. With the alert being displayed, I will still be able to perform click operations on those 4 buttons at the top of the screen. When I turn ON TalkBack (Android Accessibility Service) in Android device and click on that button, alert is getting

How to focus Buttons (or other widgets) with TalkBack turned ON in Android Device?

旧时模样 提交于 2020-06-03 07:29:41
问题 I'm implementing Accessibility in my application. Here's the scenario : I have 4 buttons arranged horizontally at the very top of the screen (Activity). On the click of a button, I'm launching an Alert Dialog which displays something to the user. With the alert being displayed, I will still be able to perform click operations on those 4 buttons at the top of the screen. When I turn ON TalkBack (Android Accessibility Service) in Android device and click on that button, alert is getting

Android Accessibility service real time audio processing

倾然丶 夕夏残阳落幕 提交于 2020-04-24 07:54:25
问题 Can someone please provide me a sample code for Android Accessibility service real time audio processing. I need to process the call audio. But don't know How to achieve this. Please share your thoughts on this Please find below Manifest : <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="mycalltest"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android

Unable to set accessibility focus on title textview

萝らか妹 提交于 2020-02-19 07:41:29
问题 I have an EditText on an activity that requests focus when the activity launches. This is great for users who do not have TalkBack enabled. However, for accessibility (i.e. for users who have TalkBack enabled), I need to set the focus on the titlebar of the screen, instead of the EditText. I have tried several things but have been unsuccessful at setting the focus on the titlebar's textview (I have checked that titleTextView does not return null): Toolbar toolbar = (Toolbar)findViewById(R.id